summaryrefslogtreecommitdiff
path: root/lib/gitlab/saas.rb
blob: 8d9d8415cb1cb1dece4b4ddd8a1df5a4367820b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true

# This module is used to return various SaaS related configurations
# which may be overridden in other variants of GitLab

module Gitlab
  module Saas
    def self.com_url
      'https://gitlab.com'
    end

    def self.staging_com_url
      'https://staging.gitlab.com'
    end

    def self.subdomain_regex
      %r{\Ahttps://[a-z0-9]+\.gitlab\.com\z}.freeze
    end

    def self.dev_url
      'https://dev.gitlab.org'
    end
  end
end

Gitlab::Saas.prepend_mod