2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-12-11 10:36:15 -05:00
|
|
|
class BasicGroupHistorySerializer < ApplicationSerializer
|
|
|
|
attributes :action, :subject, :prev_value, :new_value, :created_at
|
|
|
|
|
|
|
|
has_one :acting_user, embed: :objects, serializer: BasicUserSerializer
|
|
|
|
has_one :target_user, embed: :objects, serializer: BasicUserSerializer
|
|
|
|
|
|
|
|
def action
|
|
|
|
GroupHistory.actions[object.action]
|
|
|
|
end
|
|
|
|
end
|