summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortamaina <tamaina@hotmail.co.jp>2020-05-31 15:48:37 +0900
committerGitHub <noreply@github.com>2020-05-31 15:48:37 +0900
commitffc7f42efcf64749f8a02d659f799e4427daa5d5 (patch)
tree51c6ae4f6f0131147485aab9064b5462fc79e47e
parentchore(client):🎨 Make font-size of note-preview em (#6414) (diff)
downloadsharkey-ffc7f42efcf64749f8a02d659f799e4427daa5d5.tar.gz
sharkey-ffc7f42efcf64749f8a02d659f799e4427daa5d5.tar.bz2
sharkey-ffc7f42efcf64749f8a02d659f799e4427daa5d5.zip
fix(client): 全既読系ボタンのAPIの指定が間違っているのを修正 (#6424)
-rw-r--r--src/client/pages/my-settings/index.vue6
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');
},
}
});