discourse/app/serializers/basic_group_history_seriali...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
369 B
Ruby
Raw Normal View History

# 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