mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 18:07:31 +00:00
feat: user grants command side (#1191)
* fix: user grant command side * fix: user grant command side * fix: user grant command side check permissions * fix: unique constraint on user grants * fix: add usergrant * fix: add usergrant * fix: add usergrant * fix: user grant remove * Update internal/v2/command/auth_checks.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * Update internal/v2/command/auth_checks.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * Update internal/v2/command/project.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * Update internal/v2/command/user_grant.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * fix: project events Co-authored-by: Livio Amstutz <livio.a@gmail.com>
This commit is contained in:
@@ -1189,7 +1189,7 @@ service ManagementService {
|
||||
};
|
||||
}
|
||||
|
||||
rpc DeactivateUserGrant(UserGrantID) returns (UserGrant) {
|
||||
rpc DeactivateUserGrant(UserGrantID) returns (google.protobuf.Empty) {
|
||||
option (google.api.http) = {
|
||||
put: "/users/{user_id}/grants/{id}/_deactivate"
|
||||
body: "*"
|
||||
@@ -1200,7 +1200,7 @@ service ManagementService {
|
||||
};
|
||||
}
|
||||
|
||||
rpc ReactivateUserGrant(UserGrantID) returns (UserGrant) {
|
||||
rpc ReactivateUserGrant(UserGrantID) returns (google.protobuf.Empty) {
|
||||
option (google.api.http) = {
|
||||
put: "/users/{user_id}/grants/{id}/_reactivate"
|
||||
body: "*"
|
||||
@@ -2833,10 +2833,9 @@ message UserGrant {
|
||||
string project_id = 4;
|
||||
repeated string role_keys = 5;
|
||||
UserGrantState state = 6;
|
||||
google.protobuf.Timestamp creation_date = 7;
|
||||
google.protobuf.Timestamp change_date = 8;
|
||||
uint64 sequence = 9;
|
||||
string grant_id = 10;
|
||||
google.protobuf.Timestamp change_date = 7;
|
||||
uint64 sequence = 8;
|
||||
string grant_id = 9;
|
||||
}
|
||||
|
||||
message UserGrantCreate {
|
||||
|
Reference in New Issue
Block a user