1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-24 06:26:52 +00:00

Fix unread notification markers (#14897)

This commit is contained in:
Takeshi Umeda 2020-09-29 22:30:56 +09:00 committed by GitHub
parent 0e41710ea9
commit f5d08f2417
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -234,3 +234,7 @@ export const mountNotifications = () => ({
export const unmountNotifications = () => ({ export const unmountNotifications = () => ({
type: NOTIFICATIONS_UNMOUNT, type: NOTIFICATIONS_UNMOUNT,
}); });
export const markNotificationsAsRead = () => ({
type: NOTIFICATIONS_MARK_AS_READ,
});