mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-09-12 19:50:57 +05: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"
|