mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
17 lines
332 B
Ruby
17 lines
332 B
Ruby
class ShopsController < BaseController
|
|
layout 'darkswarm'
|
|
|
|
before_filter :enable_embedded_shopfront
|
|
|
|
def index
|
|
@enterprises = Enterprise
|
|
.activated
|
|
.visible
|
|
.is_distributor
|
|
.includes(address: :state)
|
|
.includes(:properties)
|
|
.includes(supplied_products: :properties)
|
|
.all
|
|
end
|
|
end
|