1 2 3 4 5 6 7 8 9 10 11 12
class Admin::DashboardController < Admin::AdminController before_action :set_section def index end private def set_section @section = "dashboard" end end