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

Fix email and password forms in user settings

See merge request pleroma/pleroma-fe!1050
This commit is contained in:
HJ 2020-01-28 11:13:17 +00:00
commit 4a11ee9768
1 changed files with 2 additions and 2 deletions

View File

@ -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