2021-03-11 07:30:15 +01:00
|
|
|
# frozen_string_literal: true
|
2021-09-09 08:07:12 +02:00
|
|
|
|
2020-04-15 02:46:44 +02:00
|
|
|
class CustomWizard::LogSerializer < ApplicationSerializer
|
2021-09-09 08:07:12 +02:00
|
|
|
attributes :date,
|
|
|
|
:action,
|
|
|
|
:username,
|
|
|
|
:message
|
|
|
|
|
|
|
|
has_one :user, serializer: ::BasicUserSerializer, embed: :objects
|
2021-03-11 07:30:15 +01:00
|
|
|
end
|