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
1 changed files with 3 additions and 3 deletions

View File

@ -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');
},
}
});