summaryrefslogtreecommitdiff
path: root/app/controllers/profiles/application_controller.rb
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