mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 21:47:32 +00:00
fix(console): use authService for auth user page (#5233)
* auth grant * fix: add missing attributes to ListMyUserGrantsResponse * user grants typing * typing * auth grant link * disable without role * edit with auth grant * chore(console): auto organize imports (#5293) fix(console): auto organize imports * Update console/src/app/modules/user-grants/user-grants-datasource.ts Co-authored-by: Elio Bischof <eliobischof@gmail.com> * Update console/src/app/modules/user-grants/user-grants-datasource.ts Co-authored-by: Elio Bischof <eliobischof@gmail.com> * Update console/src/app/modules/user-grants/user-grants-datasource.ts Co-authored-by: Elio Bischof <eliobischof@gmail.com> * linter, rm unused import * add examples again * lint --------- Co-authored-by: Livio Spring <livio.a@gmail.com> Co-authored-by: Elio Bischof <eliobischof@gmail.com>
This commit is contained in:
@@ -1429,9 +1429,10 @@ message UserGrant {
|
||||
example: "\"28746028909593987\""
|
||||
}
|
||||
];
|
||||
// Deprecated: user role_keys
|
||||
repeated string roles = 4 [
|
||||
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||
example: "[\"RoleKey1\", \"RoleKey2\"]"
|
||||
example: "[\"RoleKey1\", \"RoleKey2\"]",
|
||||
}
|
||||
];
|
||||
string org_name = 5 [
|
||||
@@ -1444,6 +1445,27 @@ message UserGrant {
|
||||
example: "\"\""
|
||||
}
|
||||
];
|
||||
zitadel.v1.ObjectDetails details = 7;
|
||||
string org_domain = 8 [
|
||||
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||
example: "\"zitadel.cloud\""
|
||||
}
|
||||
];
|
||||
string project_name = 9 [
|
||||
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||
example: "\"ZITADEL\""
|
||||
}
|
||||
];
|
||||
string project_grant_id = 10 [
|
||||
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||
example: "\"28746028909586246\""
|
||||
}
|
||||
];
|
||||
repeated string role_keys = 11 [
|
||||
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||
example: "[\"RoleKey1\", \"RoleKey2\"]",
|
||||
}
|
||||
];
|
||||
}
|
||||
|
||||
message ListMyProjectOrgsRequest {
|
||||
|
Reference in New Issue
Block a user