2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-01-03 12:03:01 -05:00
|
|
|
class ReviewableHistorySerializer < ApplicationSerializer
|
2021-12-08 12:12:24 -05:00
|
|
|
attributes :id, :created_at
|
2019-01-03 12:03:01 -05:00
|
|
|
|
2021-12-08 12:12:24 -05:00
|
|
|
attribute :reviewable_history_type_for_database, key: :reviewable_history_type
|
|
|
|
attribute :status_for_database, key: :status
|
2019-01-03 12:03:01 -05:00
|
|
|
|
2021-12-08 12:12:24 -05:00
|
|
|
has_one :created_by, serializer: BasicUserSerializer, root: "users"
|
2019-01-03 12:03:01 -05:00
|
|
|
end
|