mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-10 03:00:46 +00:00
12 lines
201 B
Ruby
12 lines
201 B
Ruby
# 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
|