mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 22:48:07 +01:00
12 lines
327 B
JavaScript
12 lines
327 B
JavaScript
import { fromJS } from 'immutable';
|
|
|
|
import { NOTIFICATION_POLICY_FETCH_SUCCESS } from 'mastodon/actions/notifications';
|
|
|
|
export const notificationPolicyReducer = (state = null, action) => {
|
|
switch(action.type) {
|
|
case NOTIFICATION_POLICY_FETCH_SUCCESS:
|
|
return fromJS(action.policy);
|
|
default:
|
|
return state;
|
|
}
|
|
};
|