mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-03-03 10:45:49 +03:00
Rename UsersConfig to UsersAppConfig
This commit is contained in:
parent
95d218e3e4
commit
c812e01fc5
|
@ -75,7 +75,7 @@ THIRD_PARTY_APPS = [
|
|||
'rest_framework',
|
||||
]
|
||||
LOCAL_APPS = [
|
||||
'{{ cookiecutter.project_slug }}.users.apps.UsersConfig',
|
||||
'{{ cookiecutter.project_slug }}.users.apps.UsersAppConfig',
|
||||
# Your stuff: custom apps go here
|
||||
]
|
||||
# https://docs.djangoproject.com/en/dev/ref/settings/#installed-apps
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class UsersConfig(AppConfig):
|
||||
class UsersAppConfig(AppConfig):
|
||||
name = "{{cookiecutter.project_slug}}.users"
|
||||
verbose_name = "Users"
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user