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: b7aa03384b7e40fb6a80e5009e8c752a804e9d63 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Gitlab::ConfigHelper
  def gitlab_config_features
    Gitlab.config.gitlab.default_projects_features
  end

  def gitlab_config
    Gitlab.config.gitlab
  end
end