mirror of
https://github.com/sharkdp/bat.git
synced 2025-08-23 21:56:33 +02:00
add new syntax test files
This commit is contained in:
22
tests/syntax-tests/source/Ruby On Rails/test.rb
Normal file
22
tests/syntax-tests/source/Ruby On Rails/test.rb
Normal 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
|
Reference in New Issue
Block a user