Skip to content

Instantly share code, notes, and snippets.

@mtmcfarl
Created October 26, 2013 03:49
Show Gist options
  • Save mtmcfarl/7165077 to your computer and use it in GitHub Desktop.
Save mtmcfarl/7165077 to your computer and use it in GitHub Desktop.
class ContactsController < ApplicationController
def create
ContactFormMailer.contact_request(contact_params).deliver
render action: :thanks
end
protected
def contact_params
params[:contact].permit!
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment