Commit 9df12a81 authored by Kushal Pandya's avatar Kushal Pandya

Add missing `listEpicsPath` used by epics filter

parent 6da49550
...@@ -36,6 +36,7 @@ export default function initEpicsList({ mountPointSelector }) { ...@@ -36,6 +36,7 @@ export default function initEpicsList({ mountPointSelector }) {
epicsCountClosed, epicsCountClosed,
epicsCountAll, epicsCountAll,
epicNewPath, epicNewPath,
listEpicsPath,
groupFullPath, groupFullPath,
groupLabelsPath, groupLabelsPath,
groupMilestonesPath, groupMilestonesPath,
...@@ -71,6 +72,7 @@ export default function initEpicsList({ mountPointSelector }) { ...@@ -71,6 +72,7 @@ export default function initEpicsList({ mountPointSelector }) {
[IssuableStates.All]: parseInt(epicsCountAll, 10), [IssuableStates.All]: parseInt(epicsCountAll, 10),
}, },
epicNewPath, epicNewPath,
listEpicsPath,
groupFullPath, groupFullPath,
groupLabelsPath, groupLabelsPath,
groupMilestonesPath, groupMilestonesPath,
......
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
closed: issuables_count_for_state(:epic, :closed), closed: issuables_count_for_state(:epic, :closed),
all: issuables_count_for_state(:epic, :all) }, all: issuables_count_for_state(:epic, :all) },
epic_new_path: new_group_epic_url(@group), epic_new_path: new_group_epic_url(@group),
list_epics_path: group_epics_path(@group),
group_full_path: @group.full_path, group_full_path: @group.full_path,
group_labels_path: group_labels_path(@group, format: :json), group_labels_path: group_labels_path(@group, format: :json),
group_milestones_path: group_milestones_path(@group, format: :json), group_milestones_path: group_milestones_path(@group, format: :json),
......
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