Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-proto
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-proto
Merge requests
!7
F acm
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
F acm
f-acm
into
dev
Overview
0
Commits
17
Pipelines
3
Changes
2
Merged
Timm Fitschen
requested to merge
f-acm
into
dev
3 years ago
Overview
0
Commits
17
Pipelines
3
Changes
2
0
0
Merge request reports
Viewing commit
5d5e3170
Prev
Next
Show latest version
2 files
+
72
−
9
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Verified
5d5e3170
Add enum for entity permissions
· 5d5e3170
Timm Fitschen
authored
3 years ago
proto/caosdb/acm/v1alpha1/main.proto
+
5
−
4
View file @ 5d5e3170
Edit in single-file editor
Open in Web IDE
Show full file
@@ -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