8 lines
148 B
Ruby
8 lines
148 B
Ruby
class DashboardController < ApplicationController
|
|
before_action :require_user_signed_in
|
|
|
|
def index
|
|
@current_section = "dashboard"
|
|
end
|
|
end
|