luxlaverie3_app/app/controllers/contact_controller.rb
Nicolas Bally 03ff0980aa initial
2016-05-26 00:20:52 +02:00

13 lines
172 B
Ruby

class ContactController < ApplicationController
layout "public"
def new
end
def create
@params = params
DemandeMail.prise(@params).deliver
end
end