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
|