Skip to content
Snippets Groups Projects

F acm

Merged Timm Fitschen requested to merge f-acm into dev
2 files
+ 72
9
Compare changes
  • Side-by-side
  • Inline

Files

@@ -52,16 +52,17 @@ message PagingResponse {
// PERMISSSIONS
///////////////////////////////////////////
// TODO
// Request to list all known permissions (excluding entity permissions).
message ListKnownPermissionsRequest {}
// TODO
// Response with all known permissions. Clients may choose to create drop-down
// menues from this list.
message ListKnownPermissionsResponse {
// known permissions
repeated PermissionDescription permissions = 1;
}
// TODO
// Description of a permission.
message PermissionDescription {
// The permission
string permission = 1;
@@ -69,7 +70,7 @@ message PermissionDescription {
string description = 2;
}
// PermissionRule
// PermissionRule. These belong to Roles.
message PermissionRule {
// The permission which is being granted oder denied.
string permission = 1;
Loading