1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-25 03:54:13 -05:00

10 lines
200 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class REST::Admin::Trends::LinkSerializer < REST::Trends::LinkSerializer
attributes :id, :requires_review
def requires_review
object.requires_review?
end
end