11 lines
216 B
Ruby
11 lines
216 B
Ruby
class Dashboard::ApplicationController < ApplicationController
|
|
before_action :set_title
|
|
|
|
private
|
|
|
|
def set_title
|
|
@title = "Dashboard"
|
|
@title_url = root_path
|
|
@sidebar = "dashboard"
|
|
end
|
|
end
|