1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
class EventsController < ApplicationController
before_action :set_event, only: %i[ show edit update destroy ]
# GET /events or /events.json
def index
@events = Event.all.order(date: :asc)
@january_dates = Date.new(2024, 01, 01)..Date.new(2024, 01, 31)
render "index"
end
# GET /events/1 or /events/1.json
def show
end
# GET /events/new
def new
@event = Event.new
end
# GET /events/1/edit
def edit
end
# POST /events or /events.json
def create
@event = Event.new(event_params)
respond_to do |format|
if @event.save
format.html { redirect_to events_path, notice: "Event was successfully created." }
format.json { render :show, status: :created, location: @event }
else
format.html { render :new, status: :unprocessable_entity }
format.json { render json: @event.errors, status: :unprocessable_entity }
end
end
end
# PATCH/PUT /events/1 or /events/1.json
def update
respond_to do |format|
if @event.update(event_params)
format.html { redirect_to event_url(@event), notice: "Event was successfully updated." }
format.json { render :show, status: :ok, location: @event }
else
format.html { render :edit, status: :unprocessable_entity }
format.json { render json: @event.errors, status: :unprocessable_entity }
end
end
end
# DELETE /events/1 or /events/1.json
def destroy
@event.destroy!
respond_to do |format|
format.html { redirect_to events_url, notice: "Event was successfully destroyed." }
format.json { head :no_content }
end
end
private
# Use callbacks to share common setup or constraints between actions.
def set_event
@event = Event.find(params[:id])
end
# Only allow a list of trusted parameters through.
def event_params
params.require(:event).permit(:date, :name, :organisation_id)
end
end
|