mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FEATURE: First stab at groups page with member list
This commit is contained in:
15
app/serializers/group_post_serializer.rb
Normal file
15
app/serializers/group_post_serializer.rb
Normal file
@@ -0,0 +1,15 @@
|
||||
class GroupPostSerializer < ApplicationSerializer
|
||||
attributes :id,
|
||||
:cooked,
|
||||
:created_at,
|
||||
:title,
|
||||
:url
|
||||
|
||||
has_one :user, serializer: BasicUserSerializer, embed: :objects
|
||||
|
||||
def title
|
||||
object.topic.title
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user