demarches-normaliennes/app/helpers/commentaire_helper.rb

16 lines
413 B
Ruby
Raw Normal View History

2017-12-14 17:10:13 +01:00
module CommentaireHelper
def commentaire_is_from_me_class(commentaire, connected_user)
if commentaire.sent_by?(connected_user)
2017-12-14 17:10:13 +01:00
"from-me"
end
end
def commentaire_answer_action(commentaire, connected_user)
if commentaire.sent_by?(connected_user)
2021-04-17 18:49:00 +02:00
I18n.t('helpers.commentaire.send_message_to_instructeur')
else
2021-04-17 18:49:00 +02:00
I18n.t('helpers.commentaire.reply_in_mailbox')
end
end
2017-12-14 17:10:13 +01:00
end