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

12 lines
214 B
Ruby
Raw Normal View History

2015-04-30 13:06:18 -04:00
class Profiles::ApplicationController < ApplicationController
before_action :set_title
private
def set_title
@title = "Profile"
@title_url = profile_path
@sidebar = "profile"
end
end