mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
fix(client): 全既読系ボタンのAPIの指定が間違っているのを修正 (#6424)
This commit is contained in:
parent
326b0a9112
commit
cd2d7e95ea
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