7 lines
202 B
Python
7 lines
202 B
Python
from django.utils.translation import ugettext_lazy as _
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class CasAppConfig(AppConfig):
|
|
name = 'cas_server'
|
|
verbose_name = _('Central Authentication Service')
|