aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/dashboards_controller.rb
blob: 2585dafcac0223e76337902332a59ca596fc434c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# If you changed the default Dashboard implementation (see Dashboard),
# this controller will use a custom partial like
# custom/dashboards/_dashboard.html.slim for Custom::Dashboard
#
class DashboardsController < BreadcrumbController
  respond_to :html, only: [:show]

  def show
    @dashboard = Dashboard.create self
  end

end