2015-03-16 15:14:33 -04:00
|
|
|
class DirectoryItemSerializer < ApplicationSerializer
|
|
|
|
|
|
|
|
attributes :id,
|
|
|
|
:time_read
|
|
|
|
|
2015-03-19 14:53:52 -04:00
|
|
|
has_one :user, embed: :objects, serializer: UserNameSerializer
|
2015-03-16 15:14:33 -04:00
|
|
|
attributes *DirectoryItem.headings
|
|
|
|
|
|
|
|
def id
|
|
|
|
object.user_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def time_read
|
2017-11-17 17:08:49 -05:00
|
|
|
object.user_stat.time_read
|
2015-03-16 15:14:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def include_time_read?
|
|
|
|
object.period_type == DirectoryItem.period_types[:all]
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|