about summary refs log tree commit diff stats
path: root/app/controllers/admin/dashboard_controller.rb
blob: 6d0e6bbe71917237107d7fc808cd920da8541053 (plain) (blame)
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