Generate HTTP URLs for custom Pages domains when appropriate
This commit is contained in:
parent
2c66b942bd
commit
75e718f207
3 changed files with 7 additions and 2 deletions
|
@ -27,7 +27,7 @@ class PagesDomain < ActiveRecord::Base
|
|||
def url
|
||||
return unless domain
|
||||
|
||||
if certificate
|
||||
if certificate.present?
|
||||
"https://#{domain}"
|
||||
else
|
||||
"http://#{domain}"
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Generate HTTP URLs for custom Pages domains when appropriate
|
||||
merge_request: 16279
|
||||
author:
|
||||
type: fixed
|
|
@ -68,7 +68,7 @@ describe PagesDomain do
|
|||
subject { domain.url }
|
||||
|
||||
context 'without the certificate' do
|
||||
let(:domain) { build(:pages_domain) }
|
||||
let(:domain) { build(:pages_domain, certificate: '') }
|
||||
|
||||
it { is_expected.to eq('http://my.domain.com') }
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue