21 lines
662 B
Ruby
21 lines
662 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
class SampleDataTemplate < ProjectTemplate
|
|
class << self
|
|
def localized_templates_table
|
|
[
|
|
SampleDataTemplate.new('sample', 'Sample GitLab Project', _('An example project that shows off the best practices for setting up GitLab for your own organization, including sample issues, merge requests, and milestones'), 'https://gitlab.com/gitlab-org/sample-data-templates/sample-gitlab-project')
|
|
].freeze
|
|
end
|
|
|
|
def all
|
|
localized_templates_table
|
|
end
|
|
|
|
def archive_directory
|
|
Rails.root.join("vendor/sample_data_templates")
|
|
end
|
|
end
|
|
end
|
|
end
|