Files
libr-2/app/serializers/comment_serializer.rb
2015-09-16 21:16:00 +08:00

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