14 lines
344 B
JavaScript
14 lines
344 B
JavaScript
|
import { RULES_FETCH_SUCCESS } from 'mastodon/actions/rules';
|
||
|
import { List as ImmutableList, fromJS } from 'immutable';
|
||
|
|
||
|
const initialState = ImmutableList();
|
||
|
|
||
|
export default function rules(state = initialState, action) {
|
||
|
switch (action.type) {
|
||
|
case RULES_FETCH_SUCCESS:
|
||
|
return fromJS(action.rules);
|
||
|
default:
|
||
|
return state;
|
||
|
}
|
||
|
}
|