mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-22 19:16:39 +10:00
12 lines
214 B
Ruby
12 lines
214 B
Ruby
class Profiles::ApplicationController < ApplicationController
|
|
before_action :set_title
|
|
|
|
private
|
|
|
|
def set_title
|
|
@title = "Profile"
|
|
@title_url = profile_path
|
|
@sidebar = "profile"
|
|
end
|
|
end
|