reorganize module

This commit is contained in:
Timur Gordon
2025-04-04 08:28:07 +02:00
parent 1ea37e2e7f
commit 939b6b4e57
375 changed files with 7580 additions and 191 deletions

57
database/data/events.json Normal file
View File

@@ -0,0 +1,57 @@
{
"events": [
{
"id": "event1",
"title": "Team Meeting",
"description": "Weekly team sync meeting",
"start_time": "2025-04-04T10:00:00",
"end_time": "2025-04-04T11:00:00",
"location": "Conference Room A",
"calendar_id": "cal1",
"organizer_id": "user1",
"attendees": ["user1", "user2", "user3"],
"recurring": false,
"status": "confirmed"
},
{
"id": "event2",
"title": "Project Deadline",
"description": "Final submission for Q2 project",
"start_time": "2025-04-15T17:00:00",
"end_time": "2025-04-15T18:00:00",
"location": "Virtual",
"calendar_id": "cal1",
"organizer_id": "user2",
"attendees": ["user1", "user2", "user4"],
"recurring": false,
"status": "confirmed"
},
{
"id": "event3",
"title": "Lunch with Client",
"description": "Discuss upcoming partnership",
"start_time": "2025-04-10T12:30:00",
"end_time": "2025-04-10T14:00:00",
"location": "Downtown Cafe",
"calendar_id": "cal2",
"organizer_id": "user1",
"attendees": ["user1", "user5"],
"recurring": false,
"status": "tentative"
},
{
"id": "event4",
"title": "Weekly Status Update",
"description": "Regular status update meeting",
"start_time": "2025-04-05T09:00:00",
"end_time": "2025-04-05T09:30:00",
"location": "Conference Room B",
"calendar_id": "cal1",
"organizer_id": "user3",
"attendees": ["user1", "user2", "user3", "user4"],
"recurring": true,
"recurrence_pattern": "weekly",
"status": "confirmed"
}
]
}