mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-18 12:30:03 +00:00
8 lines
300 B
Ruby
8 lines
300 B
Ruby
|
# 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
|