UNPKG

@bigfishtv/cockpit

Version:

22 lines (18 loc) 456 B
/** * @module Reducers/defaultAssetFolder */ import * as ActionTypes from '../constants/ActionTypes' const initialState = null /** * Reducer for setting default asset folder id * @param {Object} state * @param {Number} asset folder id * @return {Object} returns state */ export default function(state = initialState, action) { switch (action.type) { case ActionTypes.ASSET_FOLDER_UPDATED: return action.asset_folder_id } return state }