1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-02 03:12:25 +01:00

add new syntax test files

This commit is contained in:
henil
2020-11-15 00:22:08 +05:30
committed by David Peter
parent a5a9ac83e5
commit 591eba66a3
18 changed files with 646 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
class ContactsController < ApplicationController
 def new
 @contact = Contact.new
 end
 def create
 @contact = Contact.new(secure_params)
 if @contact.valid?
 UserMailer.contact_email(@contact).deliver_now
 flash[:notice] = "Message sent from #{@contact.name}."
 redirect_to root_path
 else
 render :new
 end
 end
 private
 def secure_params
 params.require(:contact).permit(:name, :email, :content)
 end
end