mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-31 21:37:16 +00:00
12 lines
238 B
Ruby
12 lines
238 B
Ruby
module Spree
|
|
module Api
|
|
class EnterprisesController < Spree::Api::BaseController
|
|
respond_to :json
|
|
|
|
def show
|
|
@enterprise = Enterprise.find(params[:id])
|
|
respond_with(@enterprise)
|
|
end
|
|
end
|
|
end
|
|
end |