Default auth, return account secret on Inspect (#1430)
Co-authored-by: Ben Toogood <ben@micro.mu>
This commit is contained in:
parent
47c7181d41
commit
6723d17b22
@ -41,6 +41,7 @@ func (n *noop) Generate(id string, opts ...GenerateOption) (*Account, error) {
|
|||||||
ID: id,
|
ID: id,
|
||||||
Roles: options.Roles,
|
Roles: options.Roles,
|
||||||
Metadata: options.Metadata,
|
Metadata: options.Metadata,
|
||||||
|
Secret: &Token{},
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -63,7 +64,6 @@ func (n *noop) Verify(acc *Account, res *Resource) error {
|
|||||||
func (n *noop) Inspect(token string) (*Account, error) {
|
func (n *noop) Inspect(token string) (*Account, error) {
|
||||||
return &Account{
|
return &Account{
|
||||||
ID: uuid.New().String(),
|
ID: uuid.New().String(),
|
||||||
Secret: &Token{},
|
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user