return {
type: REBLOG_REQUEST,
status: status,
+ skipLoading: true,
};
};
type: REBLOG_SUCCESS,
status: status,
response: response,
+ skipLoading: true,
};
};
type: REBLOG_FAIL,
status: status,
error: error,
+ skipLoading: true,
};
};
return {
type: UNREBLOG_REQUEST,
status: status,
+ skipLoading: true,
};
};
type: UNREBLOG_SUCCESS,
status: status,
response: response,
+ skipLoading: true,
};
};
type: UNREBLOG_FAIL,
status: status,
error: error,
+ skipLoading: true,
};
};
return {
type: FAVOURITE_REQUEST,
status: status,
+ skipLoading: true,
};
};
type: FAVOURITE_SUCCESS,
status: status,
response: response,
+ skipLoading: true,
};
};
type: FAVOURITE_FAIL,
status: status,
error: error,
+ skipLoading: true,
};
};
return {
type: UNFAVOURITE_REQUEST,
status: status,
+ skipLoading: true,
};
};
type: UNFAVOURITE_SUCCESS,
status: status,
response: response,
+ skipLoading: true,
};
};
type: UNFAVOURITE_FAIL,
status: status,
error: error,
+ skipLoading: true,
};
};
return {
type: PIN_REQUEST,
status,
+ skipLoading: true,
};
};
type: PIN_SUCCESS,
status,
response,
+ skipLoading: true,
};
};
type: PIN_FAIL,
status,
error,
+ skipLoading: true,
};
};
return {
type: UNPIN_REQUEST,
status,
+ skipLoading: true,
};
};
type: UNPIN_SUCCESS,
status,
response,
+ skipLoading: true,
};
};
type: UNPIN_FAIL,
status,
error,
+ skipLoading: true,
};
};