2013-02-06 03:16:51 +08:00
|
|
|
class EmailLogSerializer < ApplicationSerializer
|
2013-02-07 23:45:24 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
attributes :id, :to_address, :email_type, :user_id, :created_at
|
|
|
|
has_one :user, serializer: BasicUserSerializer, embed: :objects
|
|
|
|
|
|
|
|
end
|