fix(client): 全既読系ボタンのAPIの指定が間違っているのを修正 (#6424)

This commit is contained in:
tamaina 2020-05-31 15:48:37 +09:00 committed by GitHub
parent 83d9a4b6d9
commit ffc7f42efc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -96,15 +96,15 @@ export default Vue.extend({
}, },
readAllUnreadNotes() { readAllUnreadNotes() {
this.$root.api('i/read_all_unread_notes'); this.$root.api('i/read-all-unread-notes');
}, },
readAllMessagingMessages() { readAllMessagingMessages() {
this.$root.api('i/read_all_messaging_messages'); this.$root.api('i/read-all-messaging-messages');
}, },
readAllNotifications() { readAllNotifications() {
this.$root.api('notifications/mark_all_as_read'); this.$root.api('notifications/mark-all-as-read');
}, },
} }
}); });