update booking controller in crm

This commit is contained in:
Aung Myo
2017-06-02 13:17:09 +06:30
parent c9782bf84a
commit ed6de14412
3 changed files with 10 additions and 29 deletions

View File

@@ -1,6 +1,5 @@
class Api::BookingsController < Api::ApiController
skip_before_action :authenticate
#Show customer by ID
def index
@customer = Customer.find_by(params[:id])
@@ -10,19 +9,6 @@ class Api::BookingsController < Api::ApiController
@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)