1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-23 19:13:47 -05:00

16 lines
254 B
Ruby

# frozen_string_literal: true
class REST::AppealSerializer < ActiveModel::Serializer
attributes :text, :state
def state
if object.approved?
'approved'
elsif object.rejected?
'rejected'
else
'pending'
end
end
end