소스 검색

modify passwordrecorvry

tomoya 2 년 전
부모
커밋
604cf44a2f
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 2
      frontend/src/stores/main.ts
  2. 1 1
      frontend/src/views/PasswordRecovery.vue

+ 2 - 2
frontend/src/stores/main.ts

@@ -196,7 +196,7 @@ export const useMainStore = defineStore("MainStoreId", {
               await this.checkApiError(error);
           }
         },
-        async passwordRecovery(payload: {username: string }) {
+        async passwordRecovery(username: string) {
             const loadingNotification = {
                 content: "Sending password recovery email",
                 showProgress: true,
@@ -204,7 +204,7 @@ export const useMainStore = defineStore("MainStoreId", {
             try {
                 this.addNotification(loadingNotification);
                 await Promise.all([
-                  api.passwordRecovery(payload.username),
+                  api.passwordRecovery(username),
                   await new Promise<void>((resolve, _) => setTimeout(() => resolve(), 500)),
                 ]);
                 this.removeNotification(loadingNotification);

+ 1 - 1
frontend/src/views/PasswordRecovery.vue

@@ -56,6 +56,6 @@ function cancel() {
 }
 
 function submit() {
-  mainStore.passwordRecovery({username: username.value});
+  mainStore.passwordRecovery(username.value);
 }
 </script>