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

10 lines
154 B
Ruby
Raw Normal View History

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