Files
sx-fc/app/controllers/api/restaurant/item_sets_controller.rb
2017-08-17 18:55:13 +06:30

10 lines
232 B
Ruby

class Api::Restaurant::ItemSetsController < Api::ApiController
#Description
# Pull the default menu details and also other available (active) menus
# Input Params - order_id
def index
@item_sets = ItemSet.all
end
end