You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django users
Hi, everyone.
I'm completely new to DRF and I structured my first project as the following. When I run python manage.py makemigrations script, it gives errors. I guess it's related to my folder structure but don't know exactly what's wrong with it.
Any help would be appreciated.
Thanks
wanbao jin
unread,
Apr 12, 2020, 10:53:34 PM4/12/20
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
When I just change the api.blogs.apps.BlogsConfig to api.blogs , it worked fine. I am curious why api.blogs.apps.BlogsConfig doesn't work ....
wanbao jin
unread,
Apr 12, 2020, 11:21:12 PM4/12/20
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
Ok, I figure it out, When application configuration class is used in INSTALLED_APPS, the name field of AppConfig subclass should be the path of that application.
AppConfig.name¶ Full Python path to the application, e.g. 'django.contrib.admin'. This attribute defines which application the configuration applies to. It must be set in all AppConfig subclasses. It must be unique across a Django project.