mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 01:37:31 +00:00
fix: automatically link user without prompt (#8487)
# Which Problems Are Solved There were UX issue with the autolinking prompt page and users were not able to link their account or would not understand what to do. Since the trust to the IdP is already bound by the configuration, the user can directly be linked without any user input. # How the Problems Are Solved - remove the prompt page and directly link the user if possible - remove corresponding customization texts from the API and Console # Additional Changes None # Additional Context - relates to https://github.com/zitadel/zitadel/issues/7977 - discussed with customers - created as a `fix` to be able to backport --------- Co-authored-by: Max Peintner <max@caos.ch>
This commit is contained in:
@@ -7829,7 +7829,8 @@ message SetCustomLoginTextsRequest {
|
||||
zitadel.text.v1.PasswordlessRegistrationScreenText passwordless_registration_text = 33;
|
||||
zitadel.text.v1.PasswordlessRegistrationDoneScreenText passwordless_registration_done_text = 34;
|
||||
zitadel.text.v1.ExternalRegistrationUserOverviewScreenText external_registration_user_overview_text = 35;
|
||||
zitadel.text.v1.LinkingUserPromptScreenText linking_user_prompt_text = 36;
|
||||
// Deprecated: the linking user prompt screen no longer exists
|
||||
zitadel.text.v1.LinkingUserPromptScreenText linking_user_prompt_text = 36 [deprecated = true];
|
||||
}
|
||||
|
||||
message SetCustomLoginTextsResponse {
|
||||
|
@@ -11299,7 +11299,8 @@ message SetCustomLoginTextsRequest {
|
||||
zitadel.text.v1.PasswordlessRegistrationScreenText passwordless_registration_text = 33;
|
||||
zitadel.text.v1.PasswordlessRegistrationDoneScreenText passwordless_registration_done_text = 34;
|
||||
zitadel.text.v1.ExternalRegistrationUserOverviewScreenText external_registration_user_overview_text = 35;
|
||||
zitadel.text.v1.LinkingUserPromptScreenText linking_user_prompt_text = 36;
|
||||
// Deprecated: the linking user prompt screen no longer exists
|
||||
zitadel.text.v1.LinkingUserPromptScreenText linking_user_prompt_text = 36 [deprecated = true];
|
||||
}
|
||||
|
||||
message SetCustomLoginTextsResponse {
|
||||
|
@@ -92,7 +92,8 @@ message LoginCustomText {
|
||||
PasswordlessRegistrationDoneScreenText passwordless_registration_done_text = 34;
|
||||
ExternalRegistrationUserOverviewScreenText external_registration_user_overview_text = 35;
|
||||
bool is_default = 36;
|
||||
LinkingUserPromptScreenText linking_user_prompt_text = 37;
|
||||
// Deprecated: the linking user prompt screen no longer exists
|
||||
zitadel.text.v1.LinkingUserPromptScreenText linking_user_prompt_text = 37 [deprecated = true];
|
||||
}
|
||||
|
||||
message SelectAccountScreenText {
|
||||
|
Reference in New Issue
Block a user