mirror of
https://github.com/discourse/discourse.git
synced 2025-02-09 13:32:01 +08:00
![Loïc Guitaut](/assets/img/avatar_default.png)
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
|