2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-02-06 17:16:59 -05:00
|
|
|
class GroupUserSerializer < BasicUserSerializer
|
2018-12-06 06:18:52 -05:00
|
|
|
include UserPrimaryGroupMixin
|
|
|
|
|
|
|
|
attributes :name,
|
|
|
|
:title,
|
|
|
|
:last_posted_at,
|
|
|
|
:last_seen_at,
|
2019-11-24 19:49:27 -05:00
|
|
|
:added_at,
|
|
|
|
:timezone
|
2018-11-01 00:33:28 -04:00
|
|
|
|
|
|
|
def include_added_at
|
|
|
|
object.respond_to? :added_at
|
|
|
|
end
|
2018-12-06 06:18:52 -05:00
|
|
|
|
2014-02-06 17:16:59 -05:00
|
|
|
end
|