debian-mirror-gitlab/lib/gitlab/saas.rb

55 lines
1.1 KiB
Ruby
Raw Normal View History

2021-09-04 01:27:46 +05:30
# 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
2022-01-26 12:08:38 +05:30
def self.canary_toggle_com_url
'https://next.gitlab.com'
end
2021-09-04 01:27:46 +05:30
def self.subdomain_regex
2022-04-04 11:22:00 +05:30
%r{\Ahttps://[a-z0-9-]+\.gitlab\.com\z}.freeze
2021-09-04 01:27:46 +05:30
end
def self.dev_url
'https://dev.gitlab.org'
end
2021-11-11 11:23:49 +05:30
def self.registry_prefix
'registry.gitlab.com'
end
def self.customer_support_url
'https://support.gitlab.com'
end
def self.customer_license_support_url
'https://support.gitlab.com/hc/en-us/requests/new?ticket_form_id=360000071293'
end
def self.gitlab_com_status_url
'https://status.gitlab.com'
end
2021-11-18 22:05:49 +05:30
def self.about_pricing_url
2021-12-11 22:18:48 +05:30
"https://about.gitlab.com/pricing/"
2021-11-18 22:05:49 +05:30
end
def self.about_pricing_faq_url
2021-12-11 22:18:48 +05:30
"https://about.gitlab.com/pricing#faq"
2021-11-18 22:05:49 +05:30
end
2021-09-04 01:27:46 +05:30
end
end
Gitlab::Saas.prepend_mod