mirror of
https://github.com/funamitech/mastodon
synced 2024-12-14 14:49:01 +09:00
11de3dbef6
Port c620452fd7
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
11 lines
287 B
TypeScript
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());
|
|
},
|
|
);
|