mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:07:53 +08:00
18 lines
373 B
Ruby
18 lines
373 B
Ruby
class EmailLogSerializer < ApplicationSerializer
|
|
|
|
attributes :id,
|
|
:reply_key,
|
|
:to_address,
|
|
:email_type,
|
|
:user_id,
|
|
:created_at,
|
|
:skipped,
|
|
:skipped_reason
|
|
|
|
has_one :user, serializer: BasicUserSerializer, embed: :objects
|
|
|
|
def include_skipped_reason?
|
|
object.skipped
|
|
end
|
|
end
|