discourse/app/serializers/email_log_serializer.rb

18 lines
373 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
class EmailLogSerializer < ApplicationSerializer
2013-02-07 10:45:24 -05:00
attributes :id,
:reply_key,
:to_address,
:email_type,
:user_id,
:created_at,
:skipped,
:skipped_reason
2013-02-05 14:16:51 -05:00
has_one :user, serializer: BasicUserSerializer, embed: :objects
def include_skipped_reason?
object.skipped
end
2013-02-05 14:16:51 -05:00
end