forked from FoundKeyGang/FoundKey
fix(client): 全既読系ボタンのAPIの指定が間違っているのを修正 (#6424)
This commit is contained in:
parent
83d9a4b6d9
commit
ffc7f42efc
1 changed files with 3 additions and 3 deletions
|
@ -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');
|
||||
},
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue