demarches-normaliennes/app/helpers/application_helper.rb

41 lines
790 B
Ruby
Raw Normal View History

module ApplicationHelper
2018-01-11 18:09:01 +01:00
include SanitizeUrl
def sanitize_url(url)
if !url.nil?
super(url, schemes: ['http', 'https'], replace_evil_with: root_url)
end
2018-01-11 18:09:01 +01:00
end
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
def root_path_for_profile(nav_bar_profile)
case nav_bar_profile
when :gestionnaire
gestionnaire_procedures_path
when :user
users_dossiers_path
else
root_path
end
end
def ensure_safe_json(json)
JSON.parse(json).to_json
rescue Exception => e
Raven.capture_exception(e)
{}
end
end