Files
openfoodnetwork/app/controllers/shops_controller.rb

10 lines
178 B
Ruby

class ShopsController < BaseController
layout 'darkswarm'
before_action :enable_embedded_shopfront
def index
@enterprises = ShopsListService.new.open_shops
end
end