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
{{ message }}
This repository was archived by the owner on Dec 4, 2021. It is now read-only.
For the Auth0 backend, the security decorator needs a method keyword to be specified. This requires manually updating all decorators, by hand, when swapping out the Auth0 backend.
To reduce (not completely eliminate) this work, we could infer the CRUD method from the function name:
put -> create
get -> read
patch -> update
delete -> delete
Not all the decorated function names fit this convention (e.g., list_collections) though