From d926168ef9d1542cda9c95c7c8f93f65636f943c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Trkan?= Date: Tue, 21 Oct 2025 22:24:39 +0200 Subject: [PATCH] fix(oauth): use prod MojeID --- 7project/backend/app/oauth/moje_id.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/7project/backend/app/oauth/moje_id.py b/7project/backend/app/oauth/moje_id.py index 7e1cd45..a56dc93 100644 --- a/7project/backend/app/oauth/moje_id.py +++ b/7project/backend/app/oauth/moje_id.py @@ -11,7 +11,7 @@ class MojeIDOAuth(CustomOpenID): super().__init__( client_id, client_secret, - "https://mojeid.regtest.nic.cz/.well-known/openid-configuration/", + "https://mojeid.cz/.well-known/openid-configuration/", "MojeID", base_scopes=["openid", "email", "profile"], )