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