27 lines
430 B
Ruby
27 lines
430 B
Ruby
class Public::ContactsController < ApplicationController
|
|
layout "public"
|
|
|
|
def index
|
|
|
|
end
|
|
|
|
def new
|
|
@contact = Contact.new
|
|
end
|
|
def create
|
|
@contact = Contact.new(params.require(:contact).permit(:website, :name, :email, :message))
|
|
|
|
|
|
if @contact.save
|
|
QuestionMailer.send_contact(@contact).deliver
|
|
|
|
redirect_to :action => :index
|
|
else
|
|
|
|
render :action => :new
|
|
end
|
|
|
|
end
|
|
|
|
end
|