47 lines
1.4 KiB
Ruby
47 lines
1.4 KiB
Ruby
module Public
|
|
class VolunteersController < Public::ApplicationController
|
|
before_action :check_honey_pot, only: [:create, :edit]
|
|
def new
|
|
@volunteer = current_conference.volunteers.build
|
|
end
|
|
|
|
def edit
|
|
@volunteer = current_conference.volunteers.find_by! unique_id: params[:id]
|
|
end
|
|
|
|
def create
|
|
@volunteer = current_conference.volunteers.build volunteer_params
|
|
if @volunteer.save
|
|
flash[:notice] = I18n.t("views.volunteers.successful_application")
|
|
redirect_to edit_volunteer_path(@volunteer.unique_id)
|
|
else
|
|
render :new, status: :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
def update
|
|
@volunteer = current_conference.volunteers.find_by! unique_id: params[:id]
|
|
if @volunteer.update volunteer_params
|
|
flash[:notice] = I18n.t("views.volunteers.successful_application_edit")
|
|
redirect_to edit_volunteer_path(@volunteer.unique_id)
|
|
else
|
|
render :edit, status: :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def check_honey_pot
|
|
head :unauthorized unless params.dig(:volunteer_ht, :full_name).blank?
|
|
end
|
|
|
|
def volunteer_params
|
|
params.require(:volunteer).permit(
|
|
:name, :picture, :email, :phone, :tshirt_size, :tshirt_cut,
|
|
:food_preferences, :previous_experience, :notes, :language,
|
|
:volunteer_team_id
|
|
)
|
|
end
|
|
end
|
|
end
|