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.
16 lines
388 B
16 lines
388 B
7 years ago
|
import { STORE_HYDRATE } from 'flavours/glitch/actions/store';
|
||
7 years ago
|
import { Map as ImmutableMap } from 'immutable';
|
||
8 years ago
|
|
||
7 years ago
|
const initialState = ImmutableMap({
|
||
8 years ago
|
accept_content_types: [],
|
||
|
});
|
||
|
|
||
|
export default function meta(state = initialState, action) {
|
||
|
switch(action.type) {
|
||
7 years ago
|
case STORE_HYDRATE:
|
||
8 years ago
|
return state.merge(action.state.get('media_attachments'));
|
||
|
default:
|
||
|
return state;
|
||
|
}
|
||
|
};
|