Rezervacije
This commit is contained in:
73
app/controllers/reservations_controller.rb
Normal file
73
app/controllers/reservations_controller.rb
Normal file
@@ -0,0 +1,73 @@
|
||||
class ReservationsController < ApplicationController
|
||||
before_action :set_company
|
||||
before_action :set_reservation, only: %i[ show edit update destroy ]
|
||||
|
||||
# GET /reservations or /reservations.json
|
||||
def index
|
||||
@reservations = Reservation.all
|
||||
end
|
||||
|
||||
# GET /reservations/1 or /reservations/1.json
|
||||
def show
|
||||
end
|
||||
|
||||
# GET /reservations/new
|
||||
def new
|
||||
@reservation = Reservation.new
|
||||
@reservation.place = @company.places.first
|
||||
end
|
||||
|
||||
# GET /reservations/1/edit
|
||||
def edit
|
||||
end
|
||||
|
||||
# POST /reservations or /reservations.json
|
||||
def create
|
||||
@reservation = Reservation.new(reservation_params)
|
||||
@reservation.company = @company
|
||||
|
||||
respond_to do |format|
|
||||
if @reservation.save
|
||||
format.html { redirect_to reservation_url(@reservation), notice: "Reservation was successfully created." }
|
||||
format.json { render :show, status: :created, location: @reservation }
|
||||
else
|
||||
format.html { render :new, status: :unprocessable_entity }
|
||||
format.json { render json: @reservation.errors, status: :unprocessable_entity }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# PATCH/PUT /reservations/1 or /reservations/1.json
|
||||
def update
|
||||
respond_to do |format|
|
||||
if @reservation.update(reservation_params)
|
||||
format.html { redirect_to reservation_url(@reservation), notice: "Reservation was successfully updated." }
|
||||
format.json { render :show, status: :ok, location: @reservation }
|
||||
else
|
||||
format.html { render :edit, status: :unprocessable_entity }
|
||||
format.json { render json: @reservation.errors, status: :unprocessable_entity }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# DELETE /reservations/1 or /reservations/1.json
|
||||
def destroy
|
||||
@reservation.destroy!
|
||||
|
||||
respond_to do |format|
|
||||
format.html { redirect_to reservations_url, notice: "Reservation was successfully destroyed." }
|
||||
format.json { head :no_content }
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
# Use callbacks to share common setup or constraints between actions.
|
||||
def set_reservation
|
||||
@reservation = Reservation.find(params[:id])
|
||||
end
|
||||
|
||||
# Only allow a list of trusted parameters through.
|
||||
def reservation_params
|
||||
params.require(:reservation).permit(:company_id, :customer_id, :place_id, :title, :description, :start_time, :end_time)
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user