🚀 Notification features
Notification features are SDK composers, not Express middleware; notificationService mounts all three in source order.
Inventory
| Feature | Composed schema(s) | Composed route(s) | Purpose |
|---|---|---|---|
updateNotificationToReadFeature | updateNotificationToReadSchema | updateNotificationToReadRoute | Mark one owned notification read. |
findNotificationsFeature | findNotificationsSchema | findNotificationsRoute | List one identity's notifications. |
updateNotificationToReadBatchFeature | updateNotificationToReadBatchSchema | updateNotificationToReadBatchRoute | Mark unread notifications through an anchor. |
Details
Each feature is mounted by notificationService. The source definitions below show the exact schema-to-route composition.
updateNotificationToReadFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by notificationService or a compatible custom service context.View complete source
findNotificationsFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by notificationService or a compatible custom service context.View complete source
updateNotificationToReadBatchFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by notificationService or a compatible custom service context.View complete source