Method: IshManager::EmailConversationsController#show

Defined in:
app/controllers/ish_manager/email_conversations_controller.rb

#showObject


43
44
45
46
47
48
# File 'app/controllers/ish_manager/email_conversations_controller.rb', line 43

def show
  authorize! :email_conversations_show, IshManager::Ability
  @email_conversation = ::Office::EmailConversation.find( params[:id] )
  @email_messages     = @email_conversation.email_messages.order_by( date: :asc )
  @email_conversation.update_attributes({ state: Conv::STATE_READ })
end