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,
|
|
|
|
:skipped_reason
|
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
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|