59 lines
1.3 KiB
Ruby
59 lines
1.3 KiB
Ruby
class EventTypesController < ApplicationController
|
|
before_action :set_event_type, only: [:show, :edit, :update, :destroy]
|
|
|
|
# GET /event_types
|
|
def index
|
|
@event_types = EventType.all
|
|
end
|
|
|
|
# GET /event_types/1
|
|
def show
|
|
end
|
|
|
|
# GET /event_types/new
|
|
def new
|
|
@event_type = EventType.new
|
|
end
|
|
|
|
# GET /event_types/1/edit
|
|
def edit
|
|
end
|
|
|
|
# POST /event_types
|
|
def create
|
|
@event_type = EventType.new(event_type_params)
|
|
|
|
if @event_type.save
|
|
redirect_to @event_type, notice: 'Event type was successfully created.'
|
|
else
|
|
render action: 'new'
|
|
end
|
|
end
|
|
|
|
# PATCH/PUT /event_types/1
|
|
def update
|
|
if @event_type.update(event_type_params)
|
|
redirect_to @event_type, notice: 'Event type was successfully updated.'
|
|
else
|
|
render action: 'edit'
|
|
end
|
|
end
|
|
|
|
# DELETE /event_types/1
|
|
def destroy
|
|
@event_type.destroy
|
|
redirect_to event_types_url, notice: 'Event type was successfully destroyed.'
|
|
end
|
|
|
|
private
|
|
# Use callbacks to share common setup or constraints between actions.
|
|
def set_event_type
|
|
@event_type = EventType.find(params[:id])
|
|
end
|
|
|
|
# Only allow a trusted parameter "white list" through.
|
|
def event_type_params
|
|
params.require(:event_type).permit(:slug, :info)
|
|
end
|
|
end
|