Hi!
I’m trying to figure how to add more info to created_by in a GET request to a topic ID.
From what I could see, it uses BasicUserSerializer, which returns:
"created_by": {
"id": 1,
"username": "Name",
"name": "Name",
"avatar_template": "/user_avatar_url"
}
If I wanted to add other details, such as likes_give, likes_received, created_at, and other relevant info from the topic OP, how would I do that?
I was looking at add_to_serializer and I’ve tried doing something like this, which fails and breaks every page:
#plugin.rb
after_initialize do
add_to_serializer(:basic_user, :created_at) do
object.created_at
end
end
Thanks!