37 lines
599 B
Ruby
37 lines
599 B
Ruby
class Api::Restaurant::MenuController < Api::ApiController
|
|
|
|
#Description
|
|
# Pull the default menu details and also other available (active) menus
|
|
# Input Params - order_id
|
|
def index
|
|
@menu = menu_detail()
|
|
end
|
|
|
|
#Description
|
|
# This API show current order details
|
|
# Input Params - menu_id
|
|
def show
|
|
@menu = menu_detail(params[:id])
|
|
end
|
|
|
|
|
|
private
|
|
def menu_detail (menu_id)
|
|
if (menu_id)
|
|
#Pull this menu
|
|
menu = Menu.find_by_id(menu_id)
|
|
return menu
|
|
else
|
|
#Pull Default menu
|
|
|
|
end
|
|
|
|
end
|
|
|
|
def menu_params()
|
|
params.permit(:id)
|
|
end
|
|
|
|
|
|
end
|