Skip to content

Commit 7c16d33

Browse files
authored
Merge pull request #822 from codex-team/copilot/sub-pr-821
Fix JSDoc parameters for GET_AFFECTED_USERS_CHART_DATA action
2 parents c73de48 + a6d679f commit 7c16d33

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

src/store/modules/events/index.ts

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -568,13 +568,11 @@ const module: Module<EventsModuleState, RootState> = {
568568
* Get affected users chart data for an event for a specified period
569569
* @param context - vuex action context
570570
* @param context.commit - VueX commit method
571-
* @param context.dispatch - Vuex dispatch method
572-
* @param project - object of project data
573-
* @param project.projectId - project's id
574-
* @param project.eventId - event's id
575-
* @param project.startDate - start date
576-
* @param project.endDate - end date
577-
* @param project.groupBy - grouping interval in minutes
571+
* @param payload - object of payload data
572+
* @param payload.projectId - project's id
573+
* @param payload.eventId - event's id
574+
* @param payload.originalEventId - original event's id
575+
* @param payload.days - number of days to fetch chart data for
578576
*/
579577
async [GET_AFFECTED_USERS_CHART_DATA](
580578
{ commit },

0 commit comments

Comments
 (0)