login_not_required
Decorator for views that allows access to unauthenticated requests.
def login_not_required(
view_func: function
) - > function
Decorator for views that allows access to unauthenticated requests.
Parameters
| Name | Type | Description |
|---|---|---|
| view_func | function | The view function to be marked as accessible without user authentication |
Returns
| Type | Description |
|---|---|
function | The original view function with an internal attribute set to bypass authentication checks |