فهرست منبع

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>