feat: Add excludeFromBilling option for diary dates and update related functionality
All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 44s

This commit is contained in:
Torsten Schulz (local)
2026-05-30 16:10:34 +02:00
parent 25f3802d66
commit 9d9481ac76
12 changed files with 208 additions and 25 deletions

View File

@@ -23,6 +23,12 @@ const DiaryDate = sequelize.define('DiaryDate', {
trainingEnd: {
type: DataTypes.TIME,
allowNull: true,
},
excludeFromBilling: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
field: 'exclude_from_billing',
}
}, {
tableName: 'diary_dates',