Welcome to mirror list, hosted at ThFree Co, Russian Federation.

config_helper.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 41880069e4cfc4e3fbcf2b4f69cc816122b3394a (plain)
1
2
3
4
5
6
7
8
9
module Gitlab::ConfigHelper
  def gitlab_config_features
    Gitlab.config.gitlab.default_projects_features
  end

  def gitlab_config
    Gitlab.config.gitlab
  end
end