diff options
author | Nick Thomas <nick@gitlab.com> | 2018-01-08 01:27:19 +0000 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2018-01-08 01:30:05 +0000 |
commit | 75e718f207083615252b9ef047c4c466d9fcb5a0 (patch) | |
tree | b031eb6cffe3343d5cb1310b95307d9a06d3e3af /app/models/pages_domain.rb | |
parent | 2c66b942bde756554b22d8b54c586fe45f544b0e (diff) | |
download | gitlab-ce-75e718f207083615252b9ef047c4c466d9fcb5a0.tar.gz |
Generate HTTP URLs for custom Pages domains when appropriate
Diffstat (limited to 'app/models/pages_domain.rb')
-rw-r--r-- | app/models/pages_domain.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/pages_domain.rb b/app/models/pages_domain.rb index 8de42ff9d2e..d8bf54e0c40 100644 --- a/app/models/pages_domain.rb +++ b/app/models/pages_domain.rb @@ -27,7 +27,7 @@ class PagesDomain < ActiveRecord::Base def url return unless domain - if certificate + if certificate.present? "https://#{domain}" else "http://#{domain}" |