diff options
| author | eugenijm <eugenijm@protonmail.com> | 2020-01-28 06:12:32 +0300 |
|---|---|---|
| committer | eugenijm <eugenijm@protonmail.com> | 2020-01-28 06:12:32 +0300 |
| commit | 566f013ac49139cb3411b24920b8b235c8c3c424 (patch) | |
| tree | 9a7c48564dcd5a0a15b6b7b615c6b37af3a9220a | |
| parent | b0b0fc403a57dca6837bc99a87c66609156af2b9 (diff) | |
Fix password and email update
| -rw-r--r-- | src/components/user_settings/user_settings.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/user_settings/user_settings.js b/src/components/user_settings/user_settings.js index 1709b48f..38373056 100644 --- a/src/components/user_settings/user_settings.js +++ b/src/components/user_settings/user_settings.js @@ -307,7 +307,7 @@ const UserSettings = { newPassword: this.changePasswordInputs[1], newPasswordConfirmation: this.changePasswordInputs[2] } - this.$store.state.api.backendInteractor.changePassword({ params }) + this.$store.state.api.backendInteractor.changePassword(params) .then((res) => { if (res.status === 'success') { this.changedPassword = true @@ -324,7 +324,7 @@ const UserSettings = { email: this.newEmail, password: this.changeEmailPassword } - this.$store.state.api.backendInteractor.changeEmail({ params }) + this.$store.state.api.backendInteractor.changeEmail(params) .then((res) => { if (res.status === 'success') { this.changedEmail = true |
