15 lines
338 B
Ruby
Executable File
15 lines
338 B
Ruby
Executable File
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])
|
|
if booking.dining_facility_id.to_i == params[:table_id].to_i
|
|
@booking = booking
|
|
end
|
|
end
|
|
end
|