1
0
Fork 0
mirror of https://github.com/Luzifer/nginx-sso.git synced 2024-12-20 12:51:17 +00:00

Fix: Group assignments were not applied for Token auth

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2018-02-04 13:11:00 +01:00
parent 21f43bf48b
commit 376a3a555a
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

View file

@ -42,6 +42,7 @@ func (a *authToken) Configure(yamlSource []byte) error {
} }
a.Tokens = envelope.Providers.Token.Tokens a.Tokens = envelope.Providers.Token.Tokens
a.Groups = envelope.Providers.Token.Groups
return nil return nil
} }