Welcome to mirror list, hosted at ThFree Co, Russian Federation.

appearances_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c037de33c22fc27abcf81a1b808854edc2071d71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
module AppearancesHelper
  def brand_title
    brand_item&.title.presence || 'GitLab Community Edition'
  end

  def brand_image
    image_tag(brand_item.logo) if brand_item&.logo?
  end

  def brand_text
    markdown_field(brand_item, :description)
  end

  def brand_new_project_guidelines
    markdown_field(brand_item, :new_project_guidelines)
  end

  def brand_item
    @appearance ||= Appearance.current
  end

  def brand_header_logo
    if brand_item&.header_logo?
      image_tag brand_item.header_logo
    else
      render 'shared/logo.svg'
    end
  end

  # Skip the 'GitLab' type logo when custom brand logo is set
  def brand_header_logo_type
    unless brand_item&.header_logo?
      render 'shared/logo_type.svg'
    end
  end
end