2017-06-21 16:14:41 +02:00
|
|
|
module ApplicationHelper
|
2018-01-11 18:09:01 +01:00
|
|
|
include SanitizeUrl
|
|
|
|
|
|
|
|
def sanitize_url(url)
|
|
|
|
super(url, schemes: ['http', 'https'], replace_evil_with: root_url)
|
|
|
|
end
|
|
|
|
|
2017-06-21 16:14:41 +02:00
|
|
|
def flash_class(level)
|
|
|
|
case level
|
|
|
|
when "notice" then "alert-success"
|
|
|
|
when "alert" then "alert-danger"
|
|
|
|
end
|
|
|
|
end
|
2017-06-22 16:45:57 +02:00
|
|
|
|
|
|
|
def current_email
|
|
|
|
current_user.try(:email) ||
|
|
|
|
current_gestionnaire.try(:email) ||
|
|
|
|
current_administrateur.try(:email)
|
|
|
|
end
|
2017-06-21 16:14:41 +02:00
|
|
|
end
|