Add overview_controller from spree_backend so that we can now merge it with the OFN's decorator

This commit is contained in:
luisramos0
2019-11-27 21:47:34 +00:00
parent 7cc034c2bc
commit 210757641c

View File

@@ -0,0 +1,13 @@
# this clas was inspired (heavily) from the mephisto admin architecture
module Spree
module Admin
class OverviewController < Spree::Admin::BaseController
#todo, add rss feed of information that is happening
def index
@users = User.all
end
end
end
end