update addorder

This commit is contained in:
Aung Myo
2017-08-30 18:41:54 +06:30
parent 2e48c1529e
commit 84d483cad2
8 changed files with 265 additions and 53 deletions

View File

@@ -0,0 +1,9 @@
class Api::Restaurant::MenuItemInstancesController < Api::ApiController
skip_before_action :authenticate
#Description
# Pull the default menu details and also other available (active) menus
# Input Params - order_id
def show
@id = MenuItemInstance.find(params[:id])
end
end