* Resolve #3537

* tune
This commit is contained in:
MeiMei 2018-12-08 06:18:37 +09:00 committed by syuilo
parent 702875a78e
commit e2843a5ce4
2 changed files with 12 additions and 3 deletions

View file

@ -980,6 +980,7 @@ common/views/components/password-settings.vue:
enter-new-password-again: "もう一度新しいパスワードを入力してください"
not-match: "新しいパスワードが一致しません"
changed: "パスワードを変更しました"
failed: "パスワード変更に失敗しました"
desktop/views/components/sub-note-content.vue:
private: "この投稿は非公開です"

View file

@ -44,10 +44,18 @@ export default Vue.extend({
return;
}
this.$root.api('i/change_password', {
currentPasword: currentPassword,
newPassword: newPassword
currentPassword,
newPassword
}).then(() => {
this.$notify(this.$t('changed'));
this.$root.dialog({
type: 'success',
text: this.$t('changed')
});
}).catch(() => {
this.$root.dialog({
type: 'error',
text: this.$t('failed')
});
});
}
}