mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-23 05:09:10 +00:00
fix(console): display granted org name in authorizations and show user information (#7116)
* fix: add granted org info to user grants query response * fix: show user info, tests and add columns to user grant * fix: add check for org membership * fix: typo in find logic --------- Co-authored-by: Max Peintner <max@caos.ch>
This commit is contained in:
@@ -786,6 +786,21 @@ message UserGrant {
|
||||
description: "type of the user (human / machine)"
|
||||
}
|
||||
];
|
||||
string granted_org_id = 20 [
|
||||
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||
example: "\"69629023906488334\""
|
||||
}
|
||||
];
|
||||
string granted_org_name = 21 [
|
||||
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||
example: "\"ZITADEL\"";
|
||||
}
|
||||
];
|
||||
string granted_org_domain = 22 [
|
||||
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||
example: "\"zitadel.cloud\"";
|
||||
}
|
||||
];
|
||||
}
|
||||
|
||||
enum UserGrantState {
|
||||
|
Reference in New Issue
Block a user