Default Auth: Add blank secret to account to prevent nil errors (#1429)
* Remove debug auth logs * Default auth, return account secret on Inspect Co-authored-by: Ben Toogood <ben@micro.mu>
This commit is contained in:
parent
b38da6ced0
commit
47c7181d41
@ -61,7 +61,10 @@ func (n *noop) Verify(acc *Account, res *Resource) error {
|
|||||||
|
|
||||||
// Inspect a token
|
// Inspect a token
|
||||||
func (n *noop) Inspect(token string) (*Account, error) {
|
func (n *noop) Inspect(token string) (*Account, error) {
|
||||||
return &Account{ID: uuid.New().String()}, nil
|
return &Account{
|
||||||
|
ID: uuid.New().String(),
|
||||||
|
Secret: &Token{},
|
||||||
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Refresh an account using a secret
|
// Refresh an account using a secret
|
||||||
|
Loading…
Reference in New Issue
Block a user