-
-
Save radar/3b14c06f3346afde7719 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def create | |
begin | |
params[:referral][:dob] = Date.strptime(params[:referral][:dob], '%m/%d/%Y') | |
rescue ArgumentError | |
# error goes here | |
end | |
@referral = Referral.new(referral_params) | |
if @referral.save | |
redirect_to confirmation_page_referrals_path, notice: "Thank you for submitting this referral to Eminence Healthcare." | |
else | |
render :new | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment