7 lines
193 B
Python
7 lines
193 B
Python
from django.apps import AppConfig
|
|
from user_auth_system.settings import AUTH_APP_NAME
|
|
|
|
class AuthUserConfig(AppConfig):
|
|
name = AUTH_APP_NAME
|
|
verbose_name = 'Authentication and Authorization'
|