Default auth, return account secret on Inspect (#1430)

Co-authored-by: Ben Toogood <ben@micro.mu>
This commit is contained in:
ben-toogood
2020-03-27 09:54:29 +00:00
committed by GitHub
parent 47c7181d41
commit 6723d17b22

View File

@@ -41,6 +41,7 @@ func (n *noop) Generate(id string, opts ...GenerateOption) (*Account, error) {
ID: id,
Roles: options.Roles,
Metadata: options.Metadata,
Secret: &Token{},
}, nil
}
@@ -63,7 +64,6 @@ func (n *noop) Verify(acc *Account, res *Resource) error {
func (n *noop) Inspect(token string) (*Account, error) {
return &Account{
ID: uuid.New().String(),
Secret: &Token{},
}, nil
}