mirror of
https://github.com/wahyd4/libr-2.git
synced 2026-08-09 05:15:53 +10:00
13 lines
211 B
Ruby
13 lines
211 B
Ruby
class CommentSerializer < ActiveModel::Serializer
|
|
|
|
attributes :id, :content, :likes_count, :user, :time
|
|
|
|
def user
|
|
object.user.name || object.user.email
|
|
end
|
|
|
|
def time
|
|
object.created_at
|
|
end
|
|
|
|
end |