summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTim Zallmann <tzallmann@gitlab.com>2017-10-12 08:05:49 +0000
committerTim Zallmann <tzallmann@gitlab.com>2017-10-12 08:05:49 +0000
commitad5b96952e9eb90dc72d640f01aca01b5d0a2a12 (patch)
tree7e57244c77714bdaaa3d212d54d941e9d50ad0ef /lib
parentc12a1d84b5e6b55ae15948c8ae14345c39b64152 (diff)
parent457b135eb2d191183a021ce2c6ac8f05f2e53e48 (diff)
downloadgitlab-ce-ad5b96952e9eb90dc72d640f01aca01b5d0a2a12.tar.gz
Merge branch '39028-repo-by-url-fields' into 'master'
Add project fields to import project by url Closes #39028 See merge request gitlab-org/gitlab-ce!14822
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/project_template.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/gitlab/project_template.rb b/lib/gitlab/project_template.rb
index 0b43377a579..ae136202f0c 100644
--- a/lib/gitlab/project_template.rb
+++ b/lib/gitlab/project_template.rb
@@ -25,9 +25,9 @@ module Gitlab
end
TEMPLATES_TABLE = [
- ProjectTemplate.new('rails', 'Ruby on Rails', 'Includes a MVC structure, gemfile, rakefile, and .gitlab-ci.yml file, along with many others, to help you get started.', 'https://gitlab.com/gitlab-org/project-templates/rails'),
- ProjectTemplate.new('spring', 'Spring', 'Includes a MVC structure, mvnw, pom.xml, and .gitlab-ci.yml file to help you get started.', 'https://gitlab.com/gitlab-org/project-templates/spring'),
- ProjectTemplate.new('express', 'NodeJS Express', 'Includes a MVC structure, and .gitlab-ci.yml file to help you get started.', 'https://gitlab.com/gitlab-org/project-templates/express')
+ ProjectTemplate.new('rails', 'Ruby on Rails', 'Includes an MVC structure, gemfile, rakefile, and .gitlab-ci.yml file, along with many others, to help you get started.', 'https://gitlab.com/gitlab-org/project-templates/rails'),
+ ProjectTemplate.new('spring', 'Spring', 'Includes an MVC structure, mvnw, pom.xml, and .gitlab-ci.yml file to help you get started.', 'https://gitlab.com/gitlab-org/project-templates/spring'),
+ ProjectTemplate.new('express', 'NodeJS Express', 'Includes an MVC structure and .gitlab-ci.yml file to help you get started.', 'https://gitlab.com/gitlab-org/project-templates/express')
].freeze
class << self