2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
class EmailLogSerializer < ApplicationSerializer
|
2018-07-23 23:55:43 -05:00
|
|
|
include EmailLogsMixin
|
2013-02-07 09:45:24 -06:00
|
|
|
|
2022-08-02 17:11:54 -05:00
|
|
|
attributes :reply_key, :bounced, :has_bounce_key, :smtp_transaction_response
|
2013-06-10 15:46:08 -05:00
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
has_one :user, serializer: BasicUserSerializer, embed: :objects
|
2018-07-18 03:28:44 -05:00
|
|
|
|
|
|
|
def include_reply_key?
|
|
|
|
reply_keys = @options[:reply_keys]
|
|
|
|
reply_keys.present? && reply_keys[[object.post_id, object.user_id]]
|
|
|
|
end
|
|
|
|
|
|
|
|
def reply_key
|
2019-01-09 19:56:03 -06:00
|
|
|
@options[:reply_keys][[object.post_id, object.user_id]].delete("-")
|
2018-07-18 03:28:44 -05:00
|
|
|
end
|
2019-03-26 11:55:40 -05:00
|
|
|
|
|
|
|
def has_bounce_key
|
|
|
|
object.bounce_key.present?
|
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|