Closed leplatrem closed 7 years ago
We already have EqualsSubjectCondition, to allow when subject == context.key.
EqualsSubjectCondition
subject == context.key
We'd want ContainsSubjectCondition, to allow when subject in context.key (where context.key is a list of strings)
ContainsSubjectCondition
subject in context.key
context.key
Done in #49
We already have
EqualsSubjectCondition
, to allow whensubject == context.key
.We'd want
ContainsSubjectCondition
, to allow whensubject in context.key
(wherecontext.key
is a list of strings)