mirror of https://github.com/tootsuite/mastodon
16 lines
254 B
Ruby
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
|