demarches-normaliennes/app/helpers/commentaire_helper.rb

8 lines
148 B
Ruby
Raw Normal View History

2017-12-14 17:10:13 +01:00
module CommentaireHelper
def commentaire_is_from_me_class(commentaire, email)
if commentaire.email == email
"from-me"
end
end
end