Browse Source

Merge pull request #7 from xirc/master

Update README
Yonah Forst 8 years ago
parent
commit
07ed2b1416
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      README.md

+ 4
- 0
README.md View File

59
 
59
 
60
 `notificationPermissionStatus()` - checks if the user has authorized remote push notifications. Note: Apple only tells us if notifications are authorized or not, not the exact status. So this promise only returns `StatusUndetermined` or `StatusAuthorized`. You can determine if `StatusUndetermined` is actually `StatusRejected` by keeping track of whether or not you've already asked the user for permission.
60
 `notificationPermissionStatus()` - checks if the user has authorized remote push notifications. Note: Apple only tells us if notifications are authorized or not, not the exact status. So this promise only returns `StatusUndetermined` or `StatusAuthorized`. You can determine if `StatusUndetermined` is actually `StatusRejected` by keeping track of whether or not you've already asked the user for permission.
61
 
61
 
62
+
63
+You also can open the Settings app.
64
+`openSettings()` - open the Settings app
65
+
62
 ##Setup
66
 ##Setup
63
 
67
 
64
 ````
68
 ````