mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 00:54:21 +08:00
13 lines
307 B
Ruby
13 lines
307 B
Ruby
|
class StaffActionLogsSerializer < ApplicationSerializer
|
||
|
attributes :user_history_actions
|
||
|
has_many :staff_action_logs, serializer: UserHistorySerializer, embed: :objects
|
||
|
|
||
|
def staff_action_logs
|
||
|
object[:staff_action_logs]
|
||
|
end
|
||
|
|
||
|
def user_history_actions
|
||
|
object[:user_history_actions]
|
||
|
end
|
||
|
end
|