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
path: root/app
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-12-04 22:45:17 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-12-04 22:45:17 +0300
commit202d84e543578c3ab47295400a1b9b25bbb3bb67 (patch)
treebd5ed86968f1d93ea0e396c71735a1daac264c90 /app
parenta761a28a03863e85b958f61700a2b9dddeb5e3bd (diff)
Add latest changes from gitlab-org/gitlab@16-6-stable-ee
Diffstat (limited to 'app')
-rw-r--r--app/assets/javascripts/work_items/graphql/group_work_items.query.graphql1
-rw-r--r--app/assets/javascripts/work_items/graphql/project_work_items.query.graphql2
2 files changed, 3 insertions, 0 deletions
diff --git a/app/assets/javascripts/work_items/graphql/group_work_items.query.graphql b/app/assets/javascripts/work_items/graphql/group_work_items.query.graphql
index 5332e21a0cb..bfee0452acd 100644
--- a/app/assets/javascripts/work_items/graphql/group_work_items.query.graphql
+++ b/app/assets/javascripts/work_items/graphql/group_work_items.query.graphql
@@ -11,6 +11,7 @@ query groupWorkItems(
id
iid
title
+ confidential
}
}
}
diff --git a/app/assets/javascripts/work_items/graphql/project_work_items.query.graphql b/app/assets/javascripts/work_items/graphql/project_work_items.query.graphql
index 3aeaaa1116a..7efd67467e5 100644
--- a/app/assets/javascripts/work_items/graphql/project_work_items.query.graphql
+++ b/app/assets/javascripts/work_items/graphql/project_work_items.query.graphql
@@ -13,6 +13,7 @@ query projectWorkItems(
id
iid
title
+ confidential
}
}
workItemsByIid: workItems(iid: $iid, types: $types) @include(if: $isNumber) {
@@ -20,6 +21,7 @@ query projectWorkItems(
id
iid
title
+ confidential
}
}
}