[Answered ]-Django custom permissions not being recognized?

2👍

Did you add the permission to your model after first initializing the database? If so, the new permissions are not added to the database automatically even if you migrate.

To add the new permissions, you could use the update_permissions manage.py command from the django-extensions package.

👤Tim

Leave a comment