13 lines
337 B
Python
13 lines
337 B
Python
"""Authentik policy geoip app config"""
|
|
|
|
from authentik.blueprints.apps import ManagedAppConfig
|
|
|
|
|
|
class AuthentikPolicyGeoIPConfig(ManagedAppConfig):
|
|
"""Authentik policy_geoip app config"""
|
|
|
|
name = "authentik.policies.geoip"
|
|
label = "authentik_policies_geoip"
|
|
verbose_name = "authentik Policies.GeoIP"
|
|
default = True
|