mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
15 lines
426 B
Ruby
15 lines
426 B
Ruby
|
class StaffActionLogSerializer < ApplicationSerializer
|
||
|
attributes :action_name,
|
||
|
:details,
|
||
|
:context,
|
||
|
:ip_address,
|
||
|
:email,
|
||
|
:created_at
|
||
|
|
||
|
has_one :staff_user, serializer: BasicUserSerializer, embed: :objects
|
||
|
has_one :target_user, serializer: BasicUserSerializer, embed: :objects
|
||
|
|
||
|
def action_name
|
||
|
StaffActionLog.actions.key(object.action).to_s
|
||
|
end
|
||
|
end
|