update add order

This commit is contained in:
Aung Myo
2017-07-26 15:08:44 +06:30
parent 83b8d72632
commit 50a878349d
5 changed files with 84 additions and 2 deletions

View File

@@ -0,0 +1,39 @@
class Api::Restaurant::MenuCategoriesController < Api::ApiController
skip_before_action :authenticate
#Description
# Pull the default menu details and also other available (active) menus
# Input Params - order_id
def index
@menus = MenuCategory.all
@current_menu = MenuCategory.current_menu
end
#Description
# This API show current order details
# Input Params - menu_id
def show
puts "SSSSSSSSSSSSS"
@menu = menu_detail(params[:id])
puts @menu.to_json
end
private
def menu_detail (menu_id)
if (menu_id)
#Pull this menu
menu = MenuCategory.find_by_id(menu_id)
return menu
else
MenuCategory.current_menu
end
end
def menu_params()
params.permit(:id)
end
end