one way to block a user is to use exclusions, mean...
# spicedb
f
one way to block a user is to use exclusions, meaning the
-
operator. So you could define
step
as
Copy code
definition step {
          relation stage: stage
          relation viewer: user
          relation noaccess: user

          permission view = stage -> view + viewer - noaccess
       }
and then insert an explicit
noaccess
relation when you want to block view access