-
Notifications
You must be signed in to change notification settings - Fork 824
Description
I'm trying to use skip_authorization=True as mentioned in the documentation page. The document says, "To this end, you have to set skip_authorization = True on the Application model, either programmaticaly or within the Django admin". It is unclear how to implement this. I don't want to skip authorization of the django login as that is the primary entry point for a user.
In this PR, skip_authorization_completely=True was added to the class AuthorizationView but it seems like the code has changed since then and only application.skip_authorization is used. Can anyone explain where is that set in the django app?
I understand that I can change the default to True in models.py (skip_authorization = models.BooleanField(default=False)) but I'm curious if I can do it through a setting in the django app itself.