Hi all, is there a way to write a permission that always returns true when checked with auth-check without having to write a relationship for it?
I know that I could add:
definition entity {
relation all_users: user:*
permission can_do_something = all_users
}
and then write a relationship:
entity:x#all_users@user:*
However, this requires the creation of the above relationship for every entity I have.
Is there a way to have the check against can_do_something always return true without having to write any relationship?
Something like:
permission can_do_something = true