13 lines
250 B
Python
13 lines
250 B
Python
"""authentik API AppConfig"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class AuthentikAPIConfig(AppConfig):
|
|
"""authentik API Config"""
|
|
|
|
name = "authentik.api"
|
|
label = "authentik_api"
|
|
mountpoint = "api/"
|
|
verbose_name = "authentik API"
|