aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/dashboards_controller.rb
blob: de5085f3e870b8bf3710c61641fd8eb0b15d3ca5 (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 < ChouetteController
  respond_to :html, only: [:show]

  def show
    @dashboard = Dashboard.create self
  end

end