From f39a7af0f7a7521957bc0736dcabbf0faa467a89 Mon Sep 17 00:00:00 2001 From: Oswaldo Ferreira Date: Tue, 17 Apr 2018 11:21:03 -0300 Subject: Add .org? method to Gitlab helper dev_env_or_com? now considers dev.gitlab.org --- lib/gitlab.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib/gitlab.rb') diff --git a/lib/gitlab.rb b/lib/gitlab.rb index 2526a870976..f6629982512 100644 --- a/lib/gitlab.rb +++ b/lib/gitlab.rb @@ -10,11 +10,15 @@ module Gitlab Gitlab.config.gitlab.url == COM_URL || gl_subdomain? end + def self.org? + Gitlab.config.gitlab.url == 'https://dev.gitlab.org' + end + def self.gl_subdomain? SUBDOMAIN_REGEX === Gitlab.config.gitlab.url end def self.dev_env_or_com? - Rails.env.test? || Rails.env.development? || com? + Rails.env.test? || Rails.env.development? || org? || com? end end -- cgit v1.2.1