mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 05:33:47 +08:00
7 lines
199 B
Ruby
7 lines
199 B
Ruby
|
class ReviewableHistorySerializer < ApplicationSerializer
|
||
|
|
||
|
attributes :id, :reviewable_history_type, :status, :created_at
|
||
|
has_one :created_by, serializer: BasicUserSerializer, root: 'users'
|
||
|
|
||
|
end
|