Files
openfoodnetwork/app/controllers/shops_controller.rb
2022-01-26 19:58:39 +00:00

10 lines
165 B
Ruby

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