Files
sx-fc/app/controllers/api/restaurant/menu_item_options_controller.rb
2017-10-23 11:38:10 +06:30

9 lines
248 B
Ruby
Executable File

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