blob: 1c7876c5812c8081062e0c1b5e10980f51d0ad55 (
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 < InheritedResources::Base
respond_to :html, only: [:show]
def show
@dashboard = Dashboard.create self
end
end
|