2022-07-28 11:16:33 +03:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
|
|
class BasicReviewableSerializer < ApplicationSerializer
|
2022-10-05 12:30:02 +03:00
|
|
|
attributes :flagger_username, :id, :type, :pending, :created_at
|
2022-07-28 11:16:33 +03:00
|
|
|
|
|
|
|
|
def flagger_username
|
|
|
|
|
object.created_by&.username
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def pending
|
|
|
|
|
object.pending?
|
|
|
|
|
end
|
|
|
|
|
end
|