-
Notifications
You must be signed in to change notification settings - Fork 26
Notification Feeds
Alexey Bukhtin edited this page Sep 4, 2019
·
1 revision
// Mark all activities in the feed as seen:
notificationFeed.get(markOption: .seenAll) { result in /* ... */ }
// Mark some activities as read via specific Activity Group Ids:
notificationFeed.get(markOption: .read(["activityGroupIdOne", "activityGroupIdTwo"]) { result in /* ... */ }