From 0d2f986c383b544a124823a02b899877daade6a3 Mon Sep 17 00:00:00 2001 From: Nathan Levesque Date: Mon, 28 Oct 2024 14:42:53 -0400 Subject: [PATCH] Add the ol-profile openid scope to auth --- main/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main/settings.py b/main/settings.py index d40db12f61..3df75d7625 100644 --- a/main/settings.py +++ b/main/settings.py @@ -356,6 +356,8 @@ default="some super secret key", ) +SOCIAL_AUTH_OL_OIDC_SCOPE = ["ol-profile"] + USERINFO_URL = get_string( name="USERINFO_URL", default=None,