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

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

  private

  def set_title
    @title      = "Profile"
    @title_url  = profile_path
    @sidebar    = "profile"
  end
end