We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current signature:
permission_allowed(datasette, actor, action, resource_type, resource_identifier)
It turns out the resource_type is always the same thing for any given action, so it's not actually useful. I'm going to drop it.
resource_type
New signature will be:
permission_allowed(datasette, actor, action, resource)
Refs #811.
The text was updated successfully, but these errors were encountered:
I'm also going to rename resource_identifier to just resource.
resource_identifier
resource
Sorry, something went wrong.
c9f1ec6
Renamed resource_identifier to resource, refs #817
799c5d5
Updated tests, refs #817
040fc05
No branches or pull requests
Current signature:
It turns out the
resource_type
is always the same thing for any given action, so it's not actually useful. I'm going to drop it.New signature will be:
Refs #811.
The text was updated successfully, but these errors were encountered: