diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2020-05-31 15:48:37 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-31 15:48:37 +0900 |
| commit | ffc7f42efcf64749f8a02d659f799e4427daa5d5 (patch) | |
| tree | 51c6ae4f6f0131147485aab9064b5462fc79e47e | |
| parent | chore(client):🎨 Make font-size of note-preview em (#6414) (diff) | |
| download | sharkey-ffc7f42efcf64749f8a02d659f799e4427daa5d5.tar.gz sharkey-ffc7f42efcf64749f8a02d659f799e4427daa5d5.tar.bz2 sharkey-ffc7f42efcf64749f8a02d659f799e4427daa5d5.zip | |
fix(client): 全既読系ボタンのAPIの指定が間違っているのを修正 (#6424)
| -rw-r--r-- | src/client/pages/my-settings/index.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/pages/my-settings/index.vue b/src/client/pages/my-settings/index.vue index c3080e0f81..3af896d78e 100644 --- a/src/client/pages/my-settings/index.vue +++ b/src/client/pages/my-settings/index.vue @@ -96,15 +96,15 @@ export default Vue.extend({ }, readAllUnreadNotes() { - this.$root.api('i/read_all_unread_notes'); + this.$root.api('i/read-all-unread-notes'); }, readAllMessagingMessages() { - this.$root.api('i/read_all_messaging_messages'); + this.$root.api('i/read-all-messaging-messages'); }, readAllNotifications() { - this.$root.api('notifications/mark_all_as_read'); + this.$root.api('notifications/mark-all-as-read'); }, } }); |