mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
766 B
Python
25 lines
766 B
Python
5 years ago
|
from django.apps import AppConfig
|
||
|
from django.contrib.admin.checks import check_admin_app, check_dependencies
|
||
|
from django.core import checks
|
||
|
from django.utils.translation import gettext_lazy as _
|
||
|
|
||
|
|
||
|
class SimpleAdminConfig(AppConfig):
|
||
|
"""Simple AppConfig which does not do automatic discovery."""
|
||
|
|
||
|
default_site = 'django.contrib.admin.sites.AdminSite'
|
||
|
name = 'django.contrib.admin'
|
||
|
verbose_name = _("Administration")
|
||
|
|
||
|
def ready(self):
|
||
|
checks.register(check_dependencies, checks.Tags.admin)
|
||
|
checks.register(check_admin_app, checks.Tags.admin)
|
||
|
|
||
|
|
||
|
class AdminConfig(SimpleAdminConfig):
|
||
|
"""The default AppConfig for admin which does autodiscovery."""
|
||
|
|
||
|
def ready(self):
|
||
|
super().ready()
|
||
|
self.module.autodiscover()
|