1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-03-03 06:51:41 -05:00
2024-03-11 08:57:07 +00:00

10 lines
154 B
Ruby

# frozen_string_literal: true
class REST::RuleSerializer < ActiveModel::Serializer
attributes :id, :text, :hint
def id
object.id.to_s
end
end