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
Access control is now implemented on a whitelist basis.
Is there any way to deny access to some request?
In case there are several subqueries in one query - skip one and deny the other.
The text was updated successfully, but these errors were encountered:
Hi @RomBurunduk, currently the example authorization and the version we run at @movio are both based on the allowlist. We haven't yet added a denylist option.
After a brief look you could alter the AllowedFields struct in auth.go so that IsAllowed checks for a deny option as well as the allow checks.
It could be marshalled as a - for example, so a simple permission looked like:
Access control is now implemented on a whitelist basis.
Is there any way to deny access to some request?
In case there are several subqueries in one query - skip one and deny the other.
The text was updated successfully, but these errors were encountered: