1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-12 05:39:02 +09:00
YuruToot/app/serializers/rest/rule_serializer.rb

10 lines
154 B
Ruby
Raw Normal View History

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