mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-26 09:36:02 -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() {
|
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');
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue