Gab-Social/app/serializers/rest/status_bookmark_collection_serializer.rb
mgabdev 5a37a7090e Progress
accounts approved, video player testing, bookmark collections
2020-12-17 01:34:00 -05:00

11 lines
169 B
Ruby

# frozen_string_literal: true
class REST::StatusBookmarkCollectionSerializer < ActiveModel::Serializer
attributes :id, :title
def id
object.id.to_s
end
end