We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d1c344 commit 502f6bcCopy full SHA for 502f6bc
services/web/server/src/simcore_service_webserver/login/constants.py
@@ -1,5 +1,6 @@
1
from typing import Final
2
3
+from aiohttp import web
4
from common_library.user_messages import user_message
5
6
MSG_2FA_CODE_SENT: Final[str] = user_message(
@@ -125,7 +126,9 @@
125
126
127
# App keys for login plugin
128
# Naming convention: APP_LOGIN_...KEY
-LOGIN_SETTINGS_PER_PRODUCT_APPKEY: Final[str] = f"{__name__}.LOGIN_SETTINGS_PER_PRODUCT"
129
+LOGIN_SETTINGS_PER_PRODUCT_APPKEY: Final = web.AppKey(
130
+ "LOGIN_SETTINGS_PER_PRODUCT_APPKEY", dict
131
+)
132
133
134
# maximum amount the user can resend the code via email or phone
0 commit comments