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

appearances_helper.rb « gitlab « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54cafcd9e408658d1a396758ef078bf2d6183d26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module Gitlab
  module AppearancesHelper
    def brand_item
      nil
    end

    def brand_title
      'GitLab Community Edition'
    end

    def brand_image
      nil
    end

    def brand_text
      nil
    end

    def brand_header_logo
      image_tag 'logo.svg'
    end
  end
end