2018-08-22 17:54:48 +00:00
|
|
|
/** @format */
|
|
|
|
|
|
|
|
export default {
|
2018-10-10 13:57:16 +00:00
|
|
|
setReportStats( endpoint, report, query, totalResults, totalPages ) {
|
2018-08-22 17:54:48 +00:00
|
|
|
return {
|
|
|
|
type: 'SET_REPORT_STATS',
|
|
|
|
endpoint,
|
|
|
|
report,
|
2018-10-10 13:57:16 +00:00
|
|
|
totalResults,
|
|
|
|
totalPages,
|
2018-08-22 17:54:48 +00:00
|
|
|
query: query || {},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
setReportStatsError( endpoint, query ) {
|
|
|
|
return {
|
|
|
|
type: 'SET_REPORT_STATS_ERROR',
|
|
|
|
endpoint,
|
|
|
|
query: query || {},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
};
|