Co-authored-by: tobi <tobi.smethurst@protonmail.com> Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88 Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org> Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
26 lines
540 B
JavaScript
26 lines
540 B
JavaScript
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,
|
|
};
|
|
}
|