discourse/app/serializers/reviewable_history_serializer.rb
2023-01-09 14:14:59 +00:00

11 lines
323 B
Ruby

# frozen_string_literal: true
class ReviewableHistorySerializer < ApplicationSerializer
attributes :id, :created_at
attribute :reviewable_history_type_for_database, key: :reviewable_history_type
attribute :status_for_database, key: :status
has_one :created_by, serializer: BasicUserSerializer, root: "users"
end