mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
10 lines
178 B
Ruby
10 lines
178 B
Ruby
class ShopsController < BaseController
|
|
layout 'darkswarm'
|
|
|
|
before_action :enable_embedded_shopfront
|
|
|
|
def index
|
|
@enterprises = ShopsListService.new.open_shops
|
|
end
|
|
end
|