mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 12:18:06 +01:00
16 lines
445 B
Ruby
16 lines
445 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::NotificationPolicySerializer < ActiveModel::Serializer
|
|
attributes :filter_not_following,
|
|
:filter_not_followers,
|
|
:filter_new_accounts,
|
|
:filter_private_mentions,
|
|
:summary
|
|
|
|
def summary
|
|
{
|
|
pending_requests_count: object.pending_requests_count.to_s,
|
|
pending_notifications_count: object.pending_notifications_count.to_s,
|
|
}
|
|
end
|
|
end
|