You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
762 B
22 lines
762 B
import { createAction } from '@reduxjs/toolkit'; |
|
|
|
import { |
|
apiGetNotificationPolicy, |
|
apiUpdateNotificationsPolicy, |
|
} from 'mastodon/api/notification_policies'; |
|
import type { NotificationPolicy } from 'mastodon/models/notification_policy'; |
|
import { createDataLoadingThunk } from 'mastodon/store/typed_functions'; |
|
|
|
export const fetchNotificationPolicy = createDataLoadingThunk( |
|
'notificationPolicy/fetch', |
|
() => apiGetNotificationPolicy(), |
|
); |
|
|
|
export const updateNotificationsPolicy = createDataLoadingThunk( |
|
'notificationPolicy/update', |
|
(policy: Partial<NotificationPolicy>) => apiUpdateNotificationsPolicy(policy), |
|
); |
|
|
|
export const decreasePendingNotificationsCount = createAction<number>( |
|
'notificationPolicy/decreasePendingNotificationCount', |
|
);
|
|
|