config_helper.rb 201 字节
Newer Older
G
gfyoung 已提交
1 2
# frozen_string_literal: true

3 4 5 6 7 8 9 10 11
module Gitlab::ConfigHelper
  def gitlab_config_features
    Gitlab.config.gitlab.default_projects_features
  end

  def gitlab_config
    Gitlab.config.gitlab
  end
end