Welcome to mirror list, hosted at ThFree Co, Russian Federation.

application_controller.rb « dashboard « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0a0af3d4ce2a99d346ed5952287de045e35e65e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
class Dashboard::ApplicationController < ApplicationController
  before_action :set_title

  private

  def set_title
    @title      = "Dashboard"
    @title_url  = root_path
    @sidebar    = "dashboard"
  end
end