From 80d3eb2d75fb2ed138a15b8fa7c0aa08b53878c9 Mon Sep 17 00:00:00 2001 From: Roger Joys Date: Sat, 25 Apr 2026 18:41:38 -0700 Subject: [PATCH] Add attributes scope to OIDC request to support guest_wifi_duration_minutes --- app/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/auth.py b/app/auth.py index 48ed955..964f4d6 100755 --- a/app/auth.py +++ b/app/auth.py @@ -4,7 +4,7 @@ import logging logger = logging.getLogger(__name__) -SCOPES = "openid email profile" +SCOPES = "openid email profile attributes" def get_authorization_url(config: AppConfig, state: str) -> str: