Files
sx-fc/app/controllers/api/restaurant/menu_item_options_controller.rb
2017-04-15 17:33:45 +06:30

14 lines
253 B
Ruby

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