8 lines
142 B
Ruby
8 lines
142 B
Ruby
class DashboardController < ApplicationController
|
|
before_action :authenticate_user!
|
|
|
|
def index
|
|
@current_section = :services
|
|
end
|
|
end
|