This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2022-01-19 13:37:27 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::StatusSourceSerializer < ActiveModel::Serializer
|
2022-01-19 15:02:17 -08:00
|
|
|
attributes :id, :text, :spoiler_text, :content_type
|
2022-01-19 13:37:27 -08:00
|
|
|
|
|
|
|
def id
|
|
|
|
object.id.to_s
|
|
|
|
end
|
|
|
|
end
|