Files
mastodon/app/javascript/flavours/glitch/actions/notifications_migration.tsx
2024-09-17 18:13:36 +02:00

11 lines
287 B
TypeScript

import { createAppAsyncThunk } from 'flavours/glitch/store';
import { fetchNotifications } from './notification_groups';
export const initializeNotifications = createAppAsyncThunk(
'notifications/initialize',
(_, { dispatch }) => {
void dispatch(fetchNotifications());
},
);