Interface WebPushSubscriptionAlerts

interface WebPushSubscriptionAlerts {
    admin: {
        report: boolean;
        signUp: boolean;
    };
    favourite: boolean;
    follow: boolean;
    mention: boolean;
    poll: boolean;
    reblog: boolean;
    status: boolean;
    update: boolean;
}

Properties

admin: {
    report: boolean;
    signUp: boolean;
}

Type declaration

  • report: boolean

    Receive new report notifications? Defaults to false. Must have a role with the appropriate permissions.

  • signUp: boolean

    Receive new user signup notifications? Defaults to false. Must have a role with the appropriate permissions.

favourite: boolean

Receive a push notification when a status you created has been favourited by someone else? Boolean.

follow: boolean

Receive a push notification when someone has followed you? Boolean.

mention: boolean

Receive a push notification when a status you created has been boosted by someone else? Boolean.

poll: boolean

Receive a push notification when a poll you voted in or created has ended? Boolean.

reblog: boolean

Receive a push notification when someone else has mentioned you in a status? Boolean.

status: boolean

Receive new subscribed account notifications? Defaults to false.

update: boolean

Receive status edited notifications? Defaults to false.