Files
openfoodnetwork/app/controllers/shops_controller.rb
2022-01-18 12:22:06 +00:00

12 lines
190 B
Ruby

# frozen_string_literal: true
class ShopsController < BaseController
include EmbeddedPages
layout 'darkswarm'
def index
@enterprises = ShopsListService.new.open_shops
end
end