When setting LOGIN_REQUIRED_FOR_CRUD = True in settings.py, the models' cruds are correctly blocked when not logged in, but it is still possible to see the list of registered cruds at the myapp.com/crud/ url. Is there a config flag to make this view also hidden when not logged in?
When setting
LOGIN_REQUIRED_FOR_CRUD = True
insettings.py
, the models' cruds are correctly blocked when not logged in, but it is still possible to see the list of registered cruds at themyapp.com/crud/
url. Is there a config flag to make this view also hidden when not logged in?