mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 01:37:31 +00:00
feat: add project resource owner serch query (#2528)
This commit is contained in:
@@ -61,7 +61,7 @@ message GrantedProject {
|
||||
description: "current state of the project grant";
|
||||
}
|
||||
];
|
||||
|
||||
|
||||
string project_id = 6 [
|
||||
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||
example: "\"69629023906488334\""
|
||||
@@ -109,6 +109,7 @@ message ProjectQuery {
|
||||
option (validate.required) = true;
|
||||
|
||||
ProjectNameQuery name_query = 1;
|
||||
ProjectResourceOwnerQuery project_resource_owner_query = 2;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -127,6 +128,15 @@ message ProjectNameQuery {
|
||||
];
|
||||
}
|
||||
|
||||
message ProjectResourceOwnerQuery {
|
||||
string resource_owner = 1 [
|
||||
(validate.rules).string = {max_len: 200},
|
||||
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||
example: "\"69629023906488334\""
|
||||
}
|
||||
];
|
||||
}
|
||||
|
||||
message Role {
|
||||
string key = 1 [
|
||||
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||
|
Reference in New Issue
Block a user