Commit 68d1a9a3 authored by Brandon Labuschagne's avatar Brandon Labuschagne Committed by Mike Greiling

Add projectIds to CA service

parent 1a123b36
...@@ -8,22 +8,26 @@ export default class CycleAnalyticsService { ...@@ -8,22 +8,26 @@ export default class CycleAnalyticsService {
} }
fetchCycleAnalyticsData(options = { startDate: 30 }) { fetchCycleAnalyticsData(options = { startDate: 30 }) {
const { startDate, projectIds } = options;
return this.axios return this.axios
.get('', { .get('', {
params: { params: {
'cycle_analytics[start_date]': options.startDate, 'cycle_analytics[start_date]': startDate,
'cycle_analytics[project_ids]': projectIds,
}, },
}) })
.then(x => x.data); .then(x => x.data);
} }
fetchStageData(options) { fetchStageData(options) {
const { stage, startDate } = options; const { stage, startDate, projectIds } = options;
return this.axios return this.axios
.get(`events/${stage.name}.json`, { .get(`events/${stage.name}.json`, {
params: { params: {
'cycle_analytics[start_date]': startDate, 'cycle_analytics[start_date]': startDate,
'cycle_analytics[project_ids]': projectIds,
}, },
}) })
.then(x => x.data); .then(x => x.data);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment