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/pages/projects/shared/permissions/constants.js')
-rw-r--r--app/assets/javascripts/pages/projects/shared/permissions/constants.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/assets/javascripts/pages/projects/shared/permissions/constants.js b/app/assets/javascripts/pages/projects/shared/permissions/constants.js
index 4c687859344..522cc7cfc1a 100644
--- a/app/assets/javascripts/pages/projects/shared/permissions/constants.js
+++ b/app/assets/javascripts/pages/projects/shared/permissions/constants.js
@@ -4,6 +4,7 @@ import {
VISIBILITY_LEVEL_INTERNAL_INTEGER,
VISIBILITY_LEVEL_PUBLIC_INTEGER,
} from '~/visibility_level/constants';
+import { helpPagePath } from '~/helpers/help_page_helper';
export const visibilityLevelDescriptions = {
[VISIBILITY_LEVEL_PRIVATE_INTEGER]: __(
@@ -43,3 +44,7 @@ export const featureAccessLevelEveryone = [
export const CVE_ID_REQUEST_BUTTON_I18N = {
cve_request_toggle_label: s__('CVE|Enable CVE ID requests in the issue sidebar'),
};
+
+export const modelExperimentsHelpPath = helpPagePath(
+ 'user/project/ml/experiment_tracking/index.md',
+);