2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-03-17 03:14:33 +08:00
|
|
|
class DirectoryItemSerializer < ApplicationSerializer
|
|
|
|
|
2018-12-06 19:18:52 +08:00
|
|
|
class UserSerializer < UserNameSerializer
|
|
|
|
include UserPrimaryGroupMixin
|
|
|
|
end
|
|
|
|
|
2015-03-17 03:14:33 +08:00
|
|
|
attributes :id,
|
|
|
|
:time_read
|
|
|
|
|
2018-12-06 19:18:52 +08:00
|
|
|
has_one :user, embed: :objects, serializer: UserSerializer
|
2015-03-17 03:14:33 +08:00
|
|
|
attributes *DirectoryItem.headings
|
|
|
|
|
|
|
|
def id
|
|
|
|
object.user_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def time_read
|
2017-11-18 06:08:49 +08:00
|
|
|
object.user_stat.time_read
|
2015-03-17 03:14:33 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def include_time_read?
|
|
|
|
object.period_type == DirectoryItem.period_types[:all]
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|