2013-02-05 13:16:51 -06:00
|
|
|
class EmailLogSerializer < ApplicationSerializer
|
2013-02-07 09:45:24 -06:00
|
|
|
|
2013-06-10 15:46:08 -05:00
|
|
|
attributes :id,
|
|
|
|
:reply_key,
|
|
|
|
:to_address,
|
|
|
|
:email_type,
|
|
|
|
:user_id,
|
2014-02-14 12:06:21 -06:00
|
|
|
:created_at,
|
|
|
|
:skipped,
|
2016-02-16 09:35:57 -06:00
|
|
|
:skipped_reason,
|
2016-04-14 19:38:02 -05:00
|
|
|
:post_url,
|
2016-05-02 16:15:32 -05:00
|
|
|
:post_description,
|
|
|
|
:bounced
|
2013-06-10 15:46:08 -05:00
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
has_one :user, serializer: BasicUserSerializer, embed: :objects
|
|
|
|
|
2014-02-14 12:06:21 -06:00
|
|
|
def include_skipped_reason?
|
|
|
|
object.skipped
|
|
|
|
end
|
2016-02-16 09:35:57 -06:00
|
|
|
|
|
|
|
def post_url
|
|
|
|
object.post.url
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_post_url?
|
|
|
|
object.post.present?
|
|
|
|
end
|
|
|
|
|
2016-04-14 19:38:02 -05: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 13:16:51 -06:00
|
|
|
end
|