Encourage users that give us feedback to write to us

This commit is contained in:
gregoirenovel 2018-08-27 11:49:51 +02:00
parent 3d7b239f2b
commit 62878f9c5a

View file

@ -1,6 +1,6 @@
class NewUser::FeedbacksController < ApplicationController
def create
current_user.feedbacks.create!(mark: params[:mark])
flash.notice = "Merci de votre retour"
flash.notice = "Merci de votre retour, si vous souhaitez nous en dire plus, n'hésitez pas à <a href='mailto:#{CONTACT_EMAIL}' target='_blank'>nous contacter par email</a>."
end
end