More descriptive name for default_app_config
This commit is contained in:
parent
03cbab37f4
commit
bf7da7e805
2 changed files with 2 additions and 2 deletions
|
@ -9,4 +9,4 @@
|
||||||
#
|
#
|
||||||
# (c) 2015 Valentin Samir
|
# (c) 2015 Valentin Samir
|
||||||
|
|
||||||
default_app_config = 'cas_server.apps.AppConfig'
|
default_app_config = 'cas_server.apps.CasAppConfig'
|
||||||
|
|
|
@ -2,6 +2,6 @@ from django.utils.translation import ugettext_lazy as _
|
||||||
from django.apps import AppConfig
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
class AppConfig(AppConfig):
|
class CasAppConfig(AppConfig):
|
||||||
name = 'cas_server'
|
name = 'cas_server'
|
||||||
verbose_name = _('Central Authentication Service')
|
verbose_name = _('Central Authentication Service')
|
||||||
|
|
Loading…
Reference in a new issue