I suppose there is no way to have a permission che...
# spicedb
c
I suppose there is no way to have a permission check a permission of another type? Ie.
Copy code
User {}
Key {
  relation owner: User
}
Org {
  relation admin: User
  permission write = admin
}
Project {
  relation owner: Org
  relation key: Key
  permission write = [ would like this to be if Key's owner (which is a user) has org write ]
}
3 Views