This commit is contained in:
Janus Knudsen 2025-08-04 23:55:04 +02:00
parent e37b3d7004
commit c164975494
3 changed files with 117 additions and 17 deletions

View file

@ -180,6 +180,33 @@ export class EventManager {
allDay: false,
syncStatus: 'synced',
metadata: { duration: 120 }
},
// All-day events for demo
{
id: '15',
title: 'Company Holiday',
start: '2025-08-04T00:00:00',
end: '2025-08-04T23:59:59',
type: 'milestone',
allDay: true,
syncStatus: 'synced',
metadata: {
duration: 1440, // Full day in minutes
color: '#4caf50' // Green color
}
},
{
id: '16',
title: 'Team Building Event',
start: '2025-08-06T00:00:00',
end: '2025-08-06T23:59:59',
type: 'meeting',
allDay: true,
syncStatus: 'synced',
metadata: {
duration: 1440, // Full day in minutes
color: '#2196f3' // Blue color
}
}
];