13 lines
172 B
Ruby
13 lines
172 B
Ruby
class ContactController < ApplicationController
|
|
|
|
layout "public"
|
|
|
|
def new
|
|
end
|
|
|
|
def create
|
|
@params = params
|
|
DemandeMail.prise(@params).deliver
|
|
end
|
|
end
|