1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-14 14:43:50 -05:00

10 lines
147 B
Ruby
Raw Normal View History

2021-02-21 19:50:12 +01:00
# frozen_string_literal: true
class REST::RuleSerializer < ActiveModel::Serializer
attributes :id, :text
def id
object.id.to_s
end
end