5a37a7090e
accounts approved, video player testing, bookmark collections
11 lines
169 B
Ruby
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
|