lively-beard-47107
02/23/2022, 4:35 PM{
"namespace": "default-namespace",
"object": "group_a",
"relation": "member",
"subject_id": "user_a"
}
and
{
"namespace": "default-namespace",
"object": "resource_a",
"relation": "access",
"subject_id": "default-namespace:group_a#member"
}
NOW, ASKING THE KETO IF THE RELATION TUPLE
BELOW HAS ACCESS:
{
"namespace": "default-namespace",
"object": "resource_a",
"relation": "access",
"subject_id": "user_a"
}
Is it supposed to return True
? If yes, any idea why it isn’t working for me?steep-lamp-91158
BREAKING CHANGES: This patch changes the payload of the REST API. The gRPC API is not affected. The parameterwas previously an encoded string. With this change clients have to explicitly use eithersubject
or (subject_id
andsubject_set.namespace
andsubject_set.object
). The same is true for REST responses returned by Keto. An error with a hint will be returned ifsubject_set.relation
is still used.subject
lively-beard-47107
02/28/2022, 6:52 PMsteep-lamp-91158