gitlab-org--gitlab-foss/app/controllers/dashboard/application_controller.rb
2015-04-30 19:12:15 +02:00

11 lines
216 B
Ruby

class Dashboard::ApplicationController < ApplicationController
before_action :set_title
private
def set_title
@title = "Dashboard"
@title_url = root_path
@sidebar = "dashboard"
end
end