mashirozx/mastodon

View on GitHub
app/serializers/rest/status_source_serializer.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class REST::StatusSourceSerializer < ActiveModel::Serializer
  attributes :id, :text, :spoiler_text, :content_type, :local_only

  def id
    object.id.to_s
  end
end