providers/oauth2: fix missing nonce in id_token (#8072)
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
parent
cd61cb3847
commit
78396717fe
|
@ -495,6 +495,7 @@ class TokenView(View):
|
|||
access_token,
|
||||
self.request,
|
||||
)
|
||||
access_token.id_token.nonce = self.params.authorization_code.nonce
|
||||
access_token.save()
|
||||
|
||||
response = {
|
||||
|
|
Reference in New Issue