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:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-09-27 12:06:26 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2019-09-27 12:06:26 +0300
commit20450649ca3132e55aea60436fa6117ca6c1ae5f (patch)
tree3b87d2e4b54e72a02dcc4d1af644fbf7269c2c2e /app/helpers/export_helper.rb
parent3f0f13c6d9f567819d175b499cb437ebf3a63a38 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/helpers/export_helper.rb')
-rw-r--r--app/helpers/export_helper.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/helpers/export_helper.rb b/app/helpers/export_helper.rb
new file mode 100644
index 00000000000..d03fa6eadb2
--- /dev/null
+++ b/app/helpers/export_helper.rb
@@ -0,0 +1,17 @@
+# frozen_string_literal: true
+
+module ExportHelper
+ # An EE-overwriteable list of descriptions
+ def project_export_descriptions
+ [
+ _('Project and wiki repositories'),
+ _('Project uploads'),
+ _('Project configuration, including services'),
+ _('Issues with comments, merge requests with diffs and comments, labels, milestones, snippets, and other project entities'),
+ _('LFS objects'),
+ _('Issue Boards')
+ ]
+ end
+end
+
+ExportHelper.prepend_if_ee('EE::ExportHelper')