mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-13 22:59:19 +10:00
12 lines
225 B
Ruby
12 lines
225 B
Ruby
class Explore::ApplicationController < ApplicationController
|
|
before_action :set_title
|
|
|
|
private
|
|
|
|
def set_title
|
|
@title = "Explore GitLab"
|
|
@title_url = explore_root_path
|
|
@sidebar = "explore"
|
|
end
|
|
end
|