mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
14 lines
291 B
Ruby
14 lines
291 B
Ruby
# 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
|