cordova-plugin-push-notifications-status

0.1.0 • Public • Published

cordova-plugin-push-notifications-status

Check whether or not push notifications are enabled.

Methods

getStatus

Returns a String describing the current push notifications status.

Return values:

  • authorized: Enabled (explicitly).
  • denied: Disabled (explicitly).
  • undetermined: Disabled (you probably didn't ask).
  • unknown

Example:

const {PushNotificationsStatus} = window.cordova.plugins;

PushNotificationsStatus.getStatus(function (status) {
    if (status === 'authorized') {
        console.log('Push notifications are enabled');
    }
});

Package Sidebar

Install

npm i cordova-plugin-push-notifications-status

Weekly Downloads

1

Version

0.1.0

License

ISC

Last publish

Collaborators

  • thomaslindstr_m