diaspora/app/helpers/conversations_helper.rb
2017-09-17 19:29:15 +02:00

11 lines
331 B
Ruby

# frozen_string_literal: true
module ConversationsHelper
def conversation_class(conversation, unread_count, selected_conversation_id)
conv_class = unread_count > 0 ? "unread " : ""
if selected_conversation_id && conversation.id == selected_conversation_id
conv_class << "selected"
end
conv_class
end
end