mastodon-glitch/app/serializers/rest/rule_serializer.rb

10 lines
154 B
Ruby
Raw Normal View History

2021-02-21 18:50:12 +00:00
# frozen_string_literal: true
class REST::RuleSerializer < ActiveModel::Serializer
2024-03-11 08:57:07 +00:00
attributes :id, :text, :hint
2021-02-21 18:50:12 +00:00
def id
object.id.to_s
end
end