Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions thrift/native.thrift
Original file line number Diff line number Diff line change
Expand Up @@ -255,9 +255,11 @@ service Navigation {
* - requestSignUp: request to sign up to a newsletter using an email address entered by the user.
* Returns `true` if the request was successful, `false` if it failed for any reason. Exceptions
* thrown will be discarded.
* - getLoggedInUserEmail: request currently signed in users email address. Blank if not signed in.
*/
service Newsletters {
bool requestSignUp(1: string emailAddress, 2:string newsletterIdentityName)
bool requestSignUp(1: string emailAddress, 2:string newsletterIdentityName),
string getLoggedInUserEmail()
}

service Interaction {
Expand All @@ -284,4 +286,4 @@ service LiveActivities {
bool follow(1: string activityType, 2: string activityId)
bool unfollow(1: string activityType, 2: string activityId)
bool isFollowing(1: string activityType, 2: string activityId)
}
}
Loading