mirror of https://github.com/tootsuite/mastodon
19 lines
563 B
Ruby
19 lines
563 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::NotificationPolicySerializer < ActiveModel::Serializer
|
|
# Please update `app/javascript/mastodon/api_types/notification_policies.ts` when making changes to the attributes
|
|
|
|
attributes :filter_not_following,
|
|
:filter_not_followers,
|
|
:filter_new_accounts,
|
|
:filter_private_mentions,
|
|
:summary
|
|
|
|
def summary
|
|
{
|
|
pending_requests_count: object.pending_requests_count.to_i,
|
|
pending_notifications_count: object.pending_notifications_count.to_i,
|
|
}
|
|
end
|
|
end
|