mastodon-glitch/app/javascript/mastodon/actions/notifications_migration.tsx

11 lines
280 B
TypeScript

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