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

12 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