mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-18 17:03:14 -08:00
9 lines
170 B
Ruby
9 lines
170 B
Ruby
|
|
# frozen_string_literal: true
|
||
|
|
|
||
|
|
class REST::StatusSourceSerializer < ActiveModel::Serializer
|
||
|
|
attributes :id, :text, :spoiler_text
|
||
|
|
|
||
|
|
def id
|
||
|
|
object.id.to_s
|
||
|
|
end
|
||
|
|
end
|