Skip to content
Snippets Groups Projects
Commit 4a11ee97 authored by HJ's avatar HJ :fire:
Browse files

Merge branch 'fix-password-and-email-update' into 'develop'

Fix email and password forms in user settings

See merge request !1050
parents b0b0fc40 566f013a
No related branches found
No related tags found
2 merge requests!1074Update master with 2.0.0,!1050Fix email and password forms in user settings
Pipeline #22286 passed
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment