mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 15:55:08 +08:00
14 lines
247 B
Ruby
14 lines
247 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class BasicReviewableSerializer < ApplicationSerializer
|
||
|
attributes :flagger_username, :id, :type, :pending
|
||
|
|
||
|
def flagger_username
|
||
|
object.created_by&.username
|
||
|
end
|
||
|
|
||
|
def pending
|
||
|
object.pending?
|
||
|
end
|
||
|
end
|