mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
10 lines
197 B
Ruby
10 lines
197 B
Ruby
class ShopsController < BaseController
|
|
layout 'darkswarm'
|
|
|
|
before_filter :enable_embedded_shopfront
|
|
|
|
def index
|
|
@enterprises = Enterprise.activated.includes(address: :state).all
|
|
end
|
|
end
|