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.
25 lines
540 B
25 lines
540 B
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, |
|
}; |
|
}
|
|
|