Files
gitlabhq/app/controllers/explore/application_controller.rb
T

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