parent
702875a78e
commit
e2843a5ce4
|
@ -980,6 +980,7 @@ common/views/components/password-settings.vue:
|
||||||
enter-new-password-again: "もう一度新しいパスワードを入力してください"
|
enter-new-password-again: "もう一度新しいパスワードを入力してください"
|
||||||
not-match: "新しいパスワードが一致しません"
|
not-match: "新しいパスワードが一致しません"
|
||||||
changed: "パスワードを変更しました"
|
changed: "パスワードを変更しました"
|
||||||
|
failed: "パスワード変更に失敗しました"
|
||||||
|
|
||||||
desktop/views/components/sub-note-content.vue:
|
desktop/views/components/sub-note-content.vue:
|
||||||
private: "この投稿は非公開です"
|
private: "この投稿は非公開です"
|
||||||
|
|
|
@ -44,10 +44,18 @@ export default Vue.extend({
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.$root.api('i/change_password', {
|
this.$root.api('i/change_password', {
|
||||||
currentPasword: currentPassword,
|
currentPassword,
|
||||||
newPassword: newPassword
|
newPassword
|
||||||
}).then(() => {
|
}).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')
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue