9 lines
203 B
Python
9 lines
203 B
Python
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class AllAuthDemoAuthAppConfig(AppConfig):
|
||
|
label = "allauthdemo_auth"
|
||
|
name = "allauthdemo.auth" # "all_auth_demo_auth"
|
||
|
verbose_name = "AllAuthDemo Auth"
|
||
|
|