summaryrefslogtreecommitdiff
path: root/protos/ability.proto
blob: 656f4f97aa83cb81b32441a4a49a3aeb4a6b7e9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
service Ability {
  rpc Allowed (AllowRequest) returns (AllowReply) {}
}

message AllowRequest {
  required string subject = 1;
  required string permission = 2;
  required string resource = 3;
}

message AllowReply {
  required bool result = 1;
}