You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we develop systems and not public websites, we always want that almost every page needs authentication to be accessed, but the fact that developers can make mistakes and forget to include login_required or LoginRequiredMixin on some views can often be dangerous in terms of security.
The django-stronghold tries to solve this problem by following the same logic used in many firewalls: Everything is blocked by default (that is, required authentication) and the things that must be accessible and public must be explicitly defined.
When we develop systems and not public websites, we always want that almost every page needs authentication to be accessed, but the fact that developers can make mistakes and forget to include
login_required
orLoginRequiredMixin
on some views can often be dangerous in terms of security.The
django-stronghold
tries to solve this problem by following the same logic used in many firewalls: Everything is blocked by default (that is, required authentication) and the things that must be accessible and public must be explicitly defined.https://github.com/mgrouchy/django-stronghold
For the project that uses django-allauth:
mgrouchy/django-stronghold#71 (comment)
Note: I don't know what level of compatibility with Django> = 3.0
The text was updated successfully, but these errors were encountered: