You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: OneSignalSDK/onesignal/core/src/main/java/com/onesignal/user/IUserManager.kt
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -70,28 +70,28 @@ interface IUserManager {
70
70
*
71
71
* @param email The email address that the current user has subscribed for.
72
72
*/
73
-
funaddEmailSubscription(email:String)
73
+
funaddEmail(email:String)
74
74
75
75
/**
76
76
* Remove an email subscription from the current user.
77
77
*
78
78
* @param email The email address that the current user was subscribed for, and should no longer be.
79
79
*/
80
-
funremoveEmailSubscription(email:String)
80
+
funremoveEmail(email:String)
81
81
82
82
/**
83
83
* Add a new SMS subscription to the current user.
84
84
*
85
85
* @param sms The phone number that the current user has subscribed for, in [E.164](https://documentation.onesignal.com/docs/sms-faq#what-is-the-e164-format) format.
86
86
*/
87
-
funaddSmsSubscription(sms:String)
87
+
funaddSms(sms:String)
88
88
89
89
/**
90
90
* Remove an SMS subscription from the current user.
91
91
*
92
92
* @param sms The sms address that the current user was subscribed for, and should no longer be.
93
93
*/
94
-
funremoveSmsSubscription(sms:String)
94
+
funremoveSms(sms:String)
95
95
96
96
/**
97
97
* Add a tag for the current user. Tags are key:value pairs used as building blocks
Copy file name to clipboardExpand all lines: OneSignalSDK/onesignal/core/src/main/java/com/onesignal/user/internal/operations/LoginUserFromSubscriptionOperation.kt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -35,9 +35,9 @@ class LoginUserFromSubscriptionOperation() : Operation(LoginUserFromSubscription
0 commit comments