2013-02-05 14:16:51 -05:00
|
|
|
class EmailLogSerializer < ApplicationSerializer
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2013-06-10 16:46:08 -04:00
|
|
|
attributes :id,
|
|
|
|
:reply_key,
|
|
|
|
:to_address,
|
|
|
|
:email_type,
|
|
|
|
:user_id,
|
2014-02-14 13:06:21 -05:00
|
|
|
:created_at,
|
|
|
|
:skipped,
|
2016-02-16 10:35:57 -05:00
|
|
|
:skipped_reason,
|
2016-04-14 20:38:02 -04:00
|
|
|
:post_url,
|
2016-05-02 17:15:32 -04:00
|
|
|
:post_description,
|
|
|
|
:bounced
|
2013-06-10 16:46:08 -04:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
has_one :user, serializer: BasicUserSerializer, embed: :objects
|
|
|
|
|
2014-02-14 13:06:21 -05:00
|
|
|
def include_skipped_reason?
|
|
|
|
object.skipped
|
|
|
|
end
|
2016-02-16 10:35:57 -05:00
|
|
|
|
|
|
|
def post_url
|
|
|
|
object.post.url
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_post_url?
|
|
|
|
object.post.present?
|
|
|
|
end
|
|
|
|
|
2016-04-14 20:38:02 -04:00
|
|
|
def include_post_description?
|
|
|
|
object.post.present? && object.post.topic.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def post_description
|
|
|
|
"#{object.post.topic.title} ##{object.post.post_number}"
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|