feat: Implement member inbox with read status and question functionality
All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 53s

This commit is contained in:
Torsten Schulz (local)
2026-07-24 09:17:57 +02:00
parent 63a5db1196
commit e2e8ba0d54
9 changed files with 211 additions and 17 deletions

View File

@@ -44,6 +44,11 @@ const ClubCommunicationRecipient = sequelize.define('ClubCommunicationRecipient'
allowNull: true,
field: 'delivered_at',
},
readAt: {
type: DataTypes.DATE,
allowNull: true,
field: 'read_at',
},
lastAttemptAt: {
type: DataTypes.DATE,
allowNull: true,