75 lines
1.8 KiB
Ruby
75 lines
1.8 KiB
Ruby
class SpacesController < ApplicationController
|
|
before_action :set_space, only: [:show, :edit, :update, :destroy]
|
|
|
|
# GET /spaces
|
|
# GET /spaces.json
|
|
def index
|
|
@spaces = Space.all
|
|
end
|
|
|
|
# GET /spaces/1
|
|
# GET /spaces/1.json
|
|
def show
|
|
end
|
|
|
|
# GET /spaces/new
|
|
def new
|
|
@space = Space.new
|
|
end
|
|
|
|
# GET /spaces/1/edit
|
|
def edit
|
|
end
|
|
|
|
# POST /spaces
|
|
# POST /spaces.json
|
|
def create
|
|
@space = Space.new(space_params)
|
|
|
|
respond_to do |format|
|
|
if @space.save
|
|
format.html { redirect_to @space, notice: 'Space was successfully created.' }
|
|
format.json { render action: 'show', status: :created, location: @space }
|
|
else
|
|
format.html { render action: 'new' }
|
|
format.json { render json: @space.errors, status: :unprocessable_entity }
|
|
end
|
|
end
|
|
end
|
|
|
|
# PATCH/PUT /spaces/1
|
|
# PATCH/PUT /spaces/1.json
|
|
def update
|
|
respond_to do |format|
|
|
if @space.update(space_params)
|
|
format.html { redirect_to @space, notice: 'Space was successfully updated.' }
|
|
format.json { head :no_content }
|
|
else
|
|
format.html { render action: 'edit' }
|
|
format.json { render json: @space.errors, status: :unprocessable_entity }
|
|
end
|
|
end
|
|
end
|
|
|
|
# DELETE /spaces/1
|
|
# DELETE /spaces/1.json
|
|
def destroy
|
|
@space.destroy
|
|
respond_to do |format|
|
|
format.html { redirect_to spaces_url }
|
|
format.json { head :no_content }
|
|
end
|
|
end
|
|
|
|
private
|
|
# Use callbacks to share common setup or constraints between actions.
|
|
def set_space
|
|
@space = Space.find(params[:id])
|
|
end
|
|
|
|
# Never trust parameters from the scary internet, only allow the white list through.
|
|
def space_params
|
|
params.require(:space).permit(:name, :type, :address, :hours, :phone, :email, :website, :description)
|
|
end
|
|
end
|