2e13f6c326
To be used as a feature flag for GitLab.com-only features, such as welcome emails. We will be careful to only use this to disable features or functionality that do not make sense for any installations that aren't GitLab.com. We will not use this to restrict features from other installations or keep them "exclusive" to GitLab.com.
7 lines
115 B
Ruby
7 lines
115 B
Ruby
require 'gitlab/git'
|
|
|
|
module Gitlab
|
|
def self.com?
|
|
Gitlab.config.gitlab.url == 'https://gitlab.com'
|
|
end
|
|
end
|