discourse/app/serializers/email_log_serializer.rb

7 lines
187 B
Ruby
Raw Normal View History

2013-02-05 13:16:51 -06:00
class EmailLogSerializer < ApplicationSerializer
2013-02-07 09:45:24 -06:00
2013-02-05 13:16:51 -06:00
attributes :id, :to_address, :email_type, :user_id, :created_at
has_one :user, serializer: BasicUserSerializer, embed: :objects
end