From ffc7f42efcf64749f8a02d659f799e4427daa5d5 Mon Sep 17 00:00:00 2001 From: tamaina Date: Sun, 31 May 2020 15:48:37 +0900 Subject: [PATCH] =?UTF-8?q?fix(client):=20=E5=85=A8=E6=97=A2=E8=AA=AD?= =?UTF-8?q?=E7=B3=BB=E3=83=9C=E3=82=BF=E3=83=B3=E3=81=AEAPI=E3=81=AE?= =?UTF-8?q?=E6=8C=87=E5=AE=9A=E3=81=8C=E9=96=93=E9=81=95=E3=81=A3=E3=81=A6?= =?UTF-8?q?=E3=81=84=E3=82=8B=E3=81=AE=E3=82=92=E4=BF=AE=E6=AD=A3=20(#6424?= =?UTF-8?q?)?= 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 c3080e0f8..3af896d78 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'); }, } });