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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-proto
Commits
9c22dfb9
Verified
Commit
9c22dfb9
authored
3 years ago
by
Timm Fitschen
Browse files
Options
Downloads
Patches
Plain Diff
WIP: delete users
parent
4e0552f3
Branches
Branches containing commit
Tags
Tags containing commit
Loading
Pipeline
#16371
passed with warnings
3 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
proto/caosdb/acm/v1alpha1/main.proto
+35
-12
35 additions, 12 deletions
proto/caosdb/acm/v1alpha1/main.proto
with
35 additions
and
12 deletions
proto/caosdb/acm/v1alpha1/main.proto
+
35
−
12
View file @
9c22dfb9
...
...
@@ -111,15 +111,25 @@ message RetrieveSingleRoleRequest {
message
RetrieveSingleRoleResponse
{
// The role.
Role
role
=
1
;
// Known users with this role
repeated
User
users
=
2
;
}
// Request message for the <+TODO+> RPC
message
UpdateSingleRoleRequest
{}
// Response message for the <+TODO+> RPC
// Request message for the UpdateSingleRole RPC
message
UpdateSingleRoleRequest
{
// The role
Role
role
=
1
;
}
// Response message for the UpdateSingleRole RPC
message
UpdateSingleRoleResponse
{}
// Request message for the <+TODO+> RPC
message
DeleteSingleRoleRequest
{}
// Response message for the <+TODO+> RPC
// Request message for the DeleteSingleRole RPC
message
DeleteSingleRoleRequest
{
// the name of the role.
string
name
=
1
;
}
// Response message for the DeleteSingleRole RPC
message
DeleteSingleRoleResponse
{}
///////////////////////////////////////////
...
...
@@ -195,13 +205,26 @@ message RetrieveSingleUserResponse {
User
user
=
1
;
}
// Request message for the <+TODO+> RPC
message
UpdateSingleUserRequest
{}
// Response message for the <+TODO+> RPC
// Request message for the UpdateSingleUser RPC
message
UpdateSingleUserRequest
{
// The new user.
User
user
=
1
;
// The new password. Password will not be updated when this is empty.
string
password
=
2
;
}
// Response message for the UpdateSingleUser RPC
message
UpdateSingleUserResponse
{}
// Request message for the <+TODO+> RPC
message
DeleteSingleUserRequest
{}
// Response message for the <+TODO+> RPC
// Request message for the DeleteSingleUser RPC
message
DeleteSingleUserRequest
{
// The user's realm
string
realm
=
1
;
// The user's name
string
name
=
2
;
}
// Response message for the DeleteSingleUser RPC
message
DeleteSingleUserResponse
{}
///////////////////////////////////////////
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment