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
Is your feature request related to a problem? Please describe.
Currently django-ninja supports muliple authenticators. But it's too simple in that it only support the "OR" relationship of the authenticators. If all the authenticators are invalid, it will raise an authentication error to the response.
Is your feature request related to a problem? Please describe.
Currently django-ninja supports muliple authenticators. But it's too simple in that it only support the "OR" relationship of the authenticators. If all the authenticators are invalid, it will raise an authentication error to the response.
Related materials:
The section in the OpenAPI specification about multiple authenticators
A more readable guide
Describe the solution you'd like
I think syntax like this may be appropiate:
Where the first level in the list is OR related and the second level([Header1Key(), Header2Key()]) is AND related.
The text was updated successfully, but these errors were encountered: