mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 14:47:33 +00:00
fix: allow invite codes for users with verified mails (#9962)
# Which Problems Are Solved Users who started the invitation code verification, but haven't set up any authentication method, need to be able to do so. This might require a new invitation code, which was currently not possible since creation was prevented for users with verified emails. # How the Problems Are Solved - Allow creation of invitation emails for users with verified emails. - Merged the creation and resend into a single method, defaulting the urlTemplate, applicatioName and authRequestID from the previous code (if one exists). On the user service API, the `ResendInviteCode` endpoint has been deprecated in favor of the `CreateInviteCode` # Additional Changes None # Additional Context - Noticed while investigating something internally. - requires backport to 2.x and 3.x
This commit is contained in:
@@ -334,7 +334,7 @@ message AuthFactorU2F {
|
||||
|
||||
message SendInviteCode {
|
||||
// Optionally set a url_template, which will be used in the invite mail sent by ZITADEL to guide the user to your invitation page.
|
||||
// If no template is set, the default ZITADEL url will be used.
|
||||
// If no template is set and no previous code was created, the default ZITADEL url will be used.
|
||||
//
|
||||
// The following placeholders can be used: UserID, OrgID, Code
|
||||
optional string url_template = 1 [
|
||||
@@ -346,7 +346,7 @@ message SendInviteCode {
|
||||
}
|
||||
];
|
||||
// Optionally set an application name, which will be used in the invite mail sent by ZITADEL.
|
||||
// If no application name is set, ZITADEL will be used as default.
|
||||
// If no application name is set and no previous code was created, ZITADEL will be used as default.
|
||||
optional string application_name = 2 [
|
||||
(validate.rules).string = {min_len: 1, max_len: 200},
|
||||
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||
|
@@ -1135,6 +1135,8 @@ service UserService {
|
||||
// Create an invite code for a user
|
||||
//
|
||||
// Create an invite code for a user to initialize their first authentication method (password, passkeys, IdP) depending on the organization's available methods.
|
||||
// If an invite code has been created previously, it's url template and application name will be used as defaults for the new code.
|
||||
// The new code will overwrite the previous one and make it invalid.
|
||||
rpc CreateInviteCode (CreateInviteCodeRequest) returns (CreateInviteCodeResponse) {
|
||||
option (google.api.http) = {
|
||||
post: "/v2/users/{user_id}/invite_code"
|
||||
@@ -1158,6 +1160,8 @@ service UserService {
|
||||
|
||||
// Resend an invite code for a user
|
||||
//
|
||||
// Deprecated: Use [CreateInviteCode](apis/resources/user_service_v2/user-service-create-invite-code.api.mdx) instead.
|
||||
//
|
||||
// Resend an invite code for a user to initialize their first authentication method (password, passkeys, IdP) depending on the organization's available methods.
|
||||
// A resend is only possible if a code has been created previously and sent to the user. If there is no code or it was directly returned, an error will be returned.
|
||||
rpc ResendInviteCode (ResendInviteCodeRequest) returns (ResendInviteCodeResponse) {
|
||||
@@ -1172,6 +1176,7 @@ service UserService {
|
||||
};
|
||||
|
||||
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = {
|
||||
deprecated: true;
|
||||
responses: {
|
||||
key: "200"
|
||||
value: {
|
||||
|
Reference in New Issue
Block a user