admin dashboard

This commit is contained in:
r888888888
2014-09-24 14:03:42 -07:00
parent 5a153221c5
commit 7195c0b5fd
15 changed files with 222 additions and 156 deletions

View File

@@ -0,0 +1,9 @@
module Admin
class DashboardsController < ApplicationController
before_filter :admin_only
def show
@dashboard = AdminDashboard.new
end
end
end