mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 21:27:42 +00:00
fix: rename lifetime to expiration of pwless link in ImportHumanUserResponse (#2687)
This commit is contained in:
@@ -580,7 +580,6 @@ service ManagementService {
|
||||
rpc AddPasswordlessRegistration(AddPasswordlessRegistrationRequest) returns (AddPasswordlessRegistrationResponse) {
|
||||
option (google.api.http) = {
|
||||
post: "/users/{user_id}/passwordless/_link"
|
||||
body: "*"
|
||||
};
|
||||
option (zitadel.v1.auth_option) = {
|
||||
permission: "user.credential.write"
|
||||
@@ -3001,7 +3000,9 @@ message ImportHumanUserRequest {
|
||||
message ImportHumanUserResponse {
|
||||
message PasswordlessRegistration {
|
||||
string link = 1;
|
||||
//deprecated: use expiration instead
|
||||
google.protobuf.Duration lifetime = 2;
|
||||
google.protobuf.Duration expiration = 3;
|
||||
}
|
||||
|
||||
string user_id = 1;
|
||||
|
Reference in New Issue
Block a user