This commit is contained in:
2026-01-30 23:31:00 -06:00
commit a39095b3de
2665 changed files with 263970 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
"""Constants for OpenID integration."""
DOMAIN = "openid"
# Either provide these URLs in the config or use the configure url to discover them
CONF_AUTHORIZE_URL = "authorize_url"
CONF_TOKEN_URL = "token_url"
CONF_USER_INFO_URL = "user_info_url"
CONF_CONFIGURE_URL = "configure_url"
CONF_USERNAME_FIELD = "username_field"
CONF_SCOPE = "scope"
CONF_CREATE_USER = "create_user"
CONF_BLOCK_LOGIN = "block_login"
CONF_USE_HEADER_AUTH = "use_header_auth"
CONF_OPENID_TEXT = "openid_text"