18 lines
181 B
Ruby
18 lines
181 B
Ruby
|
module AppearancesHelper
|
||
|
def brand_item
|
||
|
nil
|
||
|
end
|
||
|
|
||
|
def brand_title
|
||
|
'GitLab Community Edition'
|
||
|
end
|
||
|
|
||
|
def brand_image
|
||
|
nil
|
||
|
end
|
||
|
|
||
|
def brand_text
|
||
|
nil
|
||
|
end
|
||
|
end
|