summaryrefslogtreecommitdiff
path: root/app/presenters/pages_domain_presenter.rb
blob: 6ef89760bec1fb3d825e3d91bafad8427506021e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

class PagesDomainPresenter < Gitlab::View::Presenter::Delegated
  presents :pages_domain

  def needs_verification?
    Gitlab::CurrentSettings.pages_domain_verification_enabled? && unverified?
  end

  def show_auto_ssl_failed_warning?
    # validations prevents auto ssl from working, so there is no need to show that warning until
    return false if needs_verification?

    ::Gitlab::LetsEncrypt.enabled? && auto_ssl_failed
  end
end