Sjhunt93
Sjhunt93
This would be super helpful for me also!
``` async def rr(): client = Client( "localhost:50051", insecure_bearer_token_credentials("123") ) post_one = ObjectReference(object_type="org/brief", object_id="1") emilia = SubjectReference(object=ObjectReference( object_type="org/tag/user", object_id="emilia", )) resp = await client.CheckPermission(CheckPermissionRequest( resource=post_one, permission="viewer", subject=emilia, )) assert resp.permissionship...