blob: 254a73d3db975f807557720c9e9471f2f3d760ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from django.apps import AppConfig
from django.core import checks
from django.contrib.auth.checks import check_user_model
from django.utils.translation import ugettext_lazy as _
class AuthConfig(AppConfig):
name = 'django.contrib.auth'
verbose_name = _("Authentication and Authorization")
def ready(self):
checks.register(checks.Tags.models)(check_user_model)
|