logo
On this page

Set custom push rules

If a user is logged in on multiple platforms, the user can configure custom push rules to specify the platforms that can or cannot receive offline push notifications.

Prerequisites

Before you implement the custom push rule feature, make sure that the following conditions are met:

Procedure

Notification for offline push rule update

To receive the notification for custom rule update, register the (userRuleUpdated) event.

Untitled
// Listen for custom rules.
zim.on('userRuleUpdated', (zim, data) => {
    // Offline push rules.
    const offlinePushRule = data.userRule.offlinePushRule;
});
1
Copied!

Set offline push rules

To support custom push rules, build the ZIMUserOfflinePushRule class to specify the platforms that do not receive offline push notifications(notToReceiveOfflinePushPlatforms)when the user is online on specified platforms(onlinePlatforms).

To set the above rules, call the updateUserOfflinePushRule method.

Untitled
// Set offline push rules.

var offlinePushRule = {
    // The user is logged in to Windows, macOS, and Linux platforms.
    onlinePlatforms: [1, 4, 5],
    // The user receives no offline push on the iPhoneOS, iPadOS, and Android platforms.
    notToReceiveOfflinePushPlatforms: [2, 3, 9],
};

zim.updateUserOfflinePushRule(offlinePushRule)
    .then((res) => {
        // success
    })
    .catch((err) => {
        // error
    });
1
Copied!

Query custom push rules

Call the querySelfUserInfo method to obtain the current custom offline push rules.

Untitled
zim.querySelfUserInfo().then((res) => {
    const { offlinePushRule } = res.selfUserInfo.userRule;
});
1
Copied!

Previous

Implement offline push notification

Next

Integrate FCM