mirror of
https://github.com/System-End/highway.git
synced 2026-04-19 22:05:13 +00:00
20 lines
689 B
Ruby
20 lines
689 B
Ruby
class RsvpsController < ApplicationController
|
|
def create
|
|
@rsvp = Rsvp.find_or_create_by_email!(rsvp_params[:email])
|
|
Rsvp.invite_to_slack(rsvp_params[:email])
|
|
if @rsvp.airtable_record_id.blank?
|
|
@rsvp.update!(url_params: rsvp_params[:url_params])
|
|
end
|
|
redirect_to root_path, flash: { notice: "Thanks for your interest; check your email for next steps!" }
|
|
rescue ActiveRecord::RecordInvalid
|
|
redirect_to root_path, flash: { alert: "Please enter a valid email address." }
|
|
rescue => e
|
|
redirect_to root_path, flash: { alert: "#{e.message}" }
|
|
end
|
|
|
|
private
|
|
|
|
def rsvp_params
|
|
params.permit(:email, :url_params, :authenticity_token, :commit)
|
|
end
|
|
end
|