31 lines
672 B
Ruby
31 lines
672 B
Ruby
class Api::BookingsController < Api::ApiController
|
|
skip_before_action :authenticate
|
|
|
|
#Show customer by ID
|
|
def index
|
|
@customer = Customer.find_by(params[:id])
|
|
end
|
|
|
|
def show
|
|
@booking = Booking.find(params[:id])
|
|
end
|
|
|
|
def update_booking
|
|
booking = Booking.find(params[:booking_id])
|
|
status = booking.update_attributes(booking_status: params[:type])
|
|
|
|
if status
|
|
render json: JSON.generate({:status => true ,:type => params[:type]})
|
|
|
|
else
|
|
render json: JSON.generate({:status => false, :error_message => "Record not found"})
|
|
|
|
end
|
|
end
|
|
|
|
# private
|
|
# def Bookings_params
|
|
# params.permit(:id, :order_id)
|
|
# end
|
|
end
|