mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 14:19:49 +08:00
8 lines
185 B
Ruby
8 lines
185 B
Ruby
class GroupUserSerializer < BasicUserSerializer
|
|
attributes :name, :title, :last_posted_at, :last_seen_at, :added_at
|
|
|
|
def include_added_at
|
|
object.respond_to? :added_at
|
|
end
|
|
end
|