Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/issues/list/index.js')
-rw-r--r--app/assets/javascripts/issues/list/index.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/assets/javascripts/issues/list/index.js b/app/assets/javascripts/issues/list/index.js
index d1b45294026..8c60ad6dc4e 100644
--- a/app/assets/javascripts/issues/list/index.js
+++ b/app/assets/javascripts/issues/list/index.js
@@ -71,6 +71,7 @@ export async function mountIssuesListApp() {
hasAnyProjects,
hasBlockedIssuesFeature,
hasIssuableHealthStatusFeature,
+ hasIssueDateFilterFeature,
hasIssueWeightsFeature,
hasIterationsFeature,
hasScopedLabelsFeature,
@@ -95,6 +96,8 @@ export async function mountIssuesListApp() {
showNewIssueLink,
signInPath,
groupId = '',
+ reportAbusePath,
+ registerPath,
} = el.dataset;
return new Vue({
@@ -117,11 +120,15 @@ export async function mountIssuesListApp() {
canReadCrmOrganization: parseBoolean(canReadCrmOrganization),
emptyStateSvgPath,
fullPath,
+ projectPath: fullPath,
groupPath,
+ reportAbusePath,
+ registerPath,
hasAnyIssues: parseBoolean(hasAnyIssues),
hasAnyProjects: parseBoolean(hasAnyProjects),
hasBlockedIssuesFeature: parseBoolean(hasBlockedIssuesFeature),
hasIssuableHealthStatusFeature: parseBoolean(hasIssuableHealthStatusFeature),
+ hasIssueDateFilterFeature: parseBoolean(hasIssueDateFilterFeature),
hasIssueWeightsFeature: parseBoolean(hasIssueWeightsFeature),
hasIterationsFeature: parseBoolean(hasIterationsFeature),
hasScopedLabelsFeature: parseBoolean(hasScopedLabelsFeature),