gitlab-org--gitlab-foss/app/controllers/dashboard/application_controller.rb

12 lines
216 B
Ruby
Raw Normal View History

2015-04-30 17:06:18 +00:00
class Dashboard::ApplicationController < ApplicationController
before_action :set_title
private
def set_title
@title = "Dashboard"
@title_url = root_path
@sidebar = "dashboard"
end
end