mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:49:14 +08:00
26fe047724
This is the first patch of many to replace our custom enums in Ruby by the ones provided by `ActiveRecord`.
11 lines
323 B
Ruby
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
|