forked from FoundKeyGang/FoundKey
parent
702875a78e
commit
e2843a5ce4
2 changed files with 12 additions and 3 deletions
|
@ -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: "この投稿は非公開です"
|
||||
|
|
|
@ -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')
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue