about summary refs log blame commit diff
path: root/app/javascript/flavours/glitch/actions/bundles.js
blob: ecc9c8f7d3ec22fff4c3426cb96bf585a5373668 (plain) (tree)























                                                           
export const BUNDLE_FETCH_REQUEST = 'BUNDLE_FETCH_REQUEST';
export const BUNDLE_FETCH_SUCCESS = 'BUNDLE_FETCH_SUCCESS';
export const BUNDLE_FETCH_FAIL = 'BUNDLE_FETCH_FAIL';

export function fetchBundleRequest(skipLoading) {
  return {
    type: BUNDLE_FETCH_REQUEST,
    skipLoading,
  };
}

export function fetchBundleSuccess(skipLoading) {
  return {
    type: BUNDLE_FETCH_SUCCESS,
    skipLoading,
  };
}

export function fetchBundleFail(error, skipLoading) {
  return {
    type: BUNDLE_FETCH_FAIL,
    error,
    skipLoading,
  };
}