mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-06 07:47:53 +10:00
14 lines
336 B
Python
14 lines
336 B
Python
"""Django app configuration for LDAP authentication."""
|
|
|
|
__package__ = "archivebox.ldap"
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class LDAPConfig(AppConfig):
|
|
"""Django app config for LDAP authentication."""
|
|
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "archivebox.ldap"
|
|
verbose_name = "LDAP Authentication"
|