aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/dashboards_controller.rb
blob: 4c0042b67076298050f691fe29b958cab1a98972 (plain)
1
2
3
4
5
6
7
8
class DashboardsController < BreadcrumbController
  respond_to :html, only: [:show]

  def show
    @dashboard = Dashboard.create self
  end

end