1
0
mirror of https://github.com/mastodon/mastodon synced 2024-12-14 06:38:21 +09:00
mastodon/app/serializers/rest/dedup_notification_group_serializer.rb

8 lines
300 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class REST::DedupNotificationGroupSerializer < ActiveModel::Serializer
has_many :accounts, serializer: REST::AccountSerializer
has_many :statuses, serializer: REST::StatusSerializer
has_many :notification_groups, serializer: REST::NotificationGroupSerializer
end