feat: add optional reply address to communication threads and enhance email transport status handling
All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 52s

This commit is contained in:
Torsten Schulz (local)
2026-07-22 15:28:39 +02:00
parent fd0b3020bf
commit d190c2cb70
8 changed files with 140 additions and 4 deletions

View File

@@ -23,6 +23,11 @@ const ClubCommunicationThread = sequelize.define('ClubCommunicationThread', {
type: DataTypes.STRING(255),
allowNull: false,
},
replyTo: {
type: DataTypes.STRING(320),
allowNull: true,
field: 'reply_to',
},
status: {
type: DataTypes.ENUM('draft', 'scheduled', 'sent', 'archived'),
allowNull: false,