From 8f6d700aa83e9de0a544ba8b869d80bd3df2ccff Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Wed, 3 Nov 2021 15:48:59 +0100 Subject: [PATCH] sources/oauth: set prompt=none for Discord provider Signed-off-by: Jens Langhammer --- authentik/sources/oauth/types/discord.py | 1 + 1 file changed, 1 insertion(+) diff --git a/authentik/sources/oauth/types/discord.py b/authentik/sources/oauth/types/discord.py index a97cca546..cee0aa07b 100644 --- a/authentik/sources/oauth/types/discord.py +++ b/authentik/sources/oauth/types/discord.py @@ -12,6 +12,7 @@ class DiscordOAuthRedirect(OAuthRedirect): def get_additional_parameters(self, source): # pragma: no cover return { "scope": "email identify", + "prompt": "none", }