mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 21:37:32 +00:00
fix: add userID to intent responses (#6566)
Co-authored-by: Livio Spring <livio.a@gmail.com>
This commit is contained in:
@@ -57,7 +57,7 @@ message IDPIntent {
|
||||
description: "ID of the IDP intent"
|
||||
min_length: 1;
|
||||
max_length: 200;
|
||||
example: "\"163840776835432705=\"";
|
||||
example: "\"163840776835432705\"";
|
||||
}
|
||||
];
|
||||
string idp_intent_token = 2 [
|
||||
@@ -68,6 +68,13 @@ message IDPIntent {
|
||||
example: "\"SJKL3ioIDpo342ioqw98fjp3sdf32wahb=\"";
|
||||
}
|
||||
];
|
||||
string user_id = 3 [
|
||||
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||
description: "ID of the ZITADEL user if external user already linked"
|
||||
max_length: 200;
|
||||
example: "\"163840776835432345\"";
|
||||
}
|
||||
];
|
||||
}
|
||||
|
||||
message IDPInformation{
|
||||
|
@@ -1159,6 +1159,12 @@ message RetrieveIdentityProviderIntentRequest{
|
||||
message RetrieveIdentityProviderIntentResponse{
|
||||
zitadel.object.v2beta.Details details = 1;
|
||||
IDPInformation idp_information = 2;
|
||||
string user_id = 3 [
|
||||
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||
description: "ID of the user in ZITADEL if external user is linked"
|
||||
example: "\"163840776835432345\"";
|
||||
}
|
||||
];
|
||||
}
|
||||
|
||||
message AddIDPLinkRequest{
|
||||
|
Reference in New Issue
Block a user