mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
5adc486cef
Cleanup uneeded column
21 lines
287 B
Ruby
21 lines
287 B
Ruby
class TopicPostCountSerializer < BasicUserSerializer
|
|
|
|
attributes :post_count
|
|
|
|
def id
|
|
object[:user].id
|
|
end
|
|
|
|
def username
|
|
object[:user].username
|
|
end
|
|
|
|
def post_count
|
|
object[:post_count]
|
|
end
|
|
|
|
def uploaded_avatar_id
|
|
object[:user].uploaded_avatar_id
|
|
end
|
|
|
|
end
|