82 lines
2.5 KiB
Ruby
82 lines
2.5 KiB
Ruby
class ReservationsController < ApplicationController
|
|
before_action :set_company
|
|
before_action :set_reservation, only: %i[ show edit update destroy ]
|
|
|
|
layout :determine_layout
|
|
# GET /reservations or /reservations.json
|
|
def index
|
|
|
|
@reservations = Reservation.all.includes(:team, :customer).where(company: @company)
|
|
@reservations = ActiveModelSerializers::SerializableResource.new(@reservations).as_json
|
|
end
|
|
|
|
# GET /reservations/1 or /reservations/1.json
|
|
def show
|
|
end
|
|
|
|
# GET /reservations/new
|
|
def new
|
|
@reservation = Reservation.new
|
|
@reservation.team = @company.teams.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, :team_id, :title, :description, :start_time, :end_time)
|
|
end
|
|
|
|
def determine_layout
|
|
action_name == 'index' ? 'calendar' : 'application'
|
|
end
|
|
|
|
end
|