File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
server/api-service/lowcoder-server/src/main/java/org/lowcoder/api/usermanagement Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -121,9 +121,21 @@ public interface UserEndpoints
121
121
@ PostMapping ("/reset-password" )
122
122
public Mono <ResponseView <String >> resetPassword (@ RequestBody ResetPasswordRequest request );
123
123
124
+ @ Operation (
125
+ tags = TAG_USER_PASSWORD_MANAGEMENT ,
126
+ operationId = "lostPassword" ,
127
+ summary = "Lost User Password" ,
128
+ description = "Initiate a Lost Password recovery process."
129
+ )
124
130
@ PostMapping ("/lost-password" )
125
131
public Mono <ResponseView <Boolean >> lostPassword (@ RequestBody LostPasswordRequest request );
126
132
133
+ @ Operation (
134
+ tags = TAG_USER_PASSWORD_MANAGEMENT ,
135
+ operationId = "resetLostPassword" ,
136
+ summary = "Reset Lost User Password" ,
137
+ description = "Resets lost password based on the token from lost password email."
138
+ )
127
139
@ PostMapping ("/reset-lost-password" )
128
140
public Mono <ResponseView <Boolean >> resetLostPassword (@ RequestBody ResetLostPasswordRequest request );
129
141
You can’t perform that action at this time.
0 commit comments