mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-09 09:12:19 +00:00
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
|