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

gitlab.rb « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3064163e076d0c3a2a7d0e8cff0f1a9033cc51e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require_dependency 'gitlab/git'

module Gitlab
  def self.com?
    # Check `staging?` as well to keep parity with gitlab.com
    Gitlab.config.gitlab.url == 'https://gitlab.com' || staging?
  end

  def self.staging?
    Gitlab.config.gitlab.url == 'https://staging.gitlab.com'
  end
end