mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-20 09:49:03 -08:00
13 lines
351 B
JavaScript
13 lines
351 B
JavaScript
import { RULES_FETCH_SUCCESS } from 'flavours/glitch/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;
|
|
}
|
|
}
|