mirror of
https://git.asonix.dog/ceralor/mastodon.git
synced 2025-10-13 13:54:33 +00:00
9 lines
148 B
Ruby
9 lines
148 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::ListSerializer < ActiveModel::Serializer
|
|
attributes :id, :title
|
|
|
|
def id
|
|
object.id.to_s
|
|
end
|
|
end
|