
* format files Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix pyright Signed-off-by: Jens Langhammer <jens@goauthentik.io> * revert #8367 Signed-off-by: Jens Langhammer <jens@goauthentik.io> * sigh Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
16 lines
442 B
Python
16 lines
442 B
Python
"""authentik oauth provider app config"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class AuthentikProviderOAuth2Config(AppConfig):
|
|
"""authentik oauth provider app config"""
|
|
|
|
name = "authentik.providers.oauth2"
|
|
label = "authentik_providers_oauth2"
|
|
verbose_name = "authentik Providers.OAuth2"
|
|
mountpoints = {
|
|
"authentik.providers.oauth2.urls_root": "",
|
|
"authentik.providers.oauth2.urls": "application/o/",
|
|
}
|