menu and menu item categories

This commit is contained in:
Min Zeya Phyo
2017-04-15 17:33:45 +06:30
parent 355f4fadb0
commit 63c5c97f24
24 changed files with 303 additions and 39 deletions

View File

@@ -0,0 +1,15 @@
class Api::Restaurant::MoveController < Api::ApiController
#Move between table
def update
end
private
# Use callbacks to share common setup or constraints between actions.
def move_params
params.permit(:booking_id, :order_id)
end
end