Notification Architecture
How notifications flow through the Gauzy system.
Notification Channelsβ
Channel Matrixβ
| Event | In-App | Push | WebSocket | |
|---|---|---|---|---|
| Task assigned | β | β | β | β |
| Timesheet submitted | β | β | β | β |
| Timesheet approved | β | β | β | β |
| Invoice sent | β | β | β | β |
| @mention | β | β | β | β |
| Team update | β | β | β | β |
| Timer started | β | β | β | β |
Service Implementationβ
@Injectable()
export class NotificationService {
async notify(recipientId: string, type: NotificationType, data: any) {
// 1. Check user preferences
const prefs = await this.getPreferences(recipientId);
// 2. Create in-app notification
if (prefs.inApp) {
await this.createInAppNotification(recipientId, type, data);
}
// 3. Send email
if (prefs.email) {
await this.emailQueue.add("notify", { recipientId, type, data });
}
// 4. Push via WebSocket
if (prefs.push) {
this.wsGateway.sendToUser(recipientId, "notification", { type, data });
}
}
}
User Preferencesβ
Users configure notification preferences per channel:
{
"assignTask": { "inApp": true, "email": true, "push": true },
"mention": { "inApp": true, "email": true, "push": true },
"approval": { "inApp": true, "email": true, "push": false },
"teams": { "inApp": true, "email": false, "push": false }
}
Related Pagesβ
- Notification System β feature
- WebSocket Architecture β WebSocket
- Email Templates β emails