From ffc7f42efcf64749f8a02d659f799e4427daa5d5 Mon Sep 17 00:00:00 2001 From: tamaina Date: Sun, 31 May 2020 15:48:37 +0900 Subject: fix(client): 全既読系ボタンのAPIの指定が間違っているのを修正 (#6424) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client/pages/my-settings/index.vue | 6 +++--- 1 file 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'); }, } }); -- cgit v1.2.3-freya