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.
18 lines
550 B
18 lines
550 B
import { createReducer, isAnyOf } from '@reduxjs/toolkit'; |
|
|
|
import { |
|
fetchNotificationPolicy, |
|
updateNotificationsPolicy, |
|
} from 'mastodon/actions/notification_policies'; |
|
import type { NotificationPolicy } from 'mastodon/models/notification_policy'; |
|
|
|
export const notificationPolicyReducer = |
|
createReducer<NotificationPolicy | null>(null, (builder) => { |
|
builder.addMatcher( |
|
isAnyOf( |
|
fetchNotificationPolicy.fulfilled, |
|
updateNotificationsPolicy.fulfilled, |
|
), |
|
(_state, action) => action.payload, |
|
); |
|
});
|
|
|