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

View File

@@ -0,0 +1,31 @@
{
"calendars": [
{
"id": "cal1",
"name": "Work Calendar",
"owner_id": "user1",
"description": "Main work calendar for team coordination",
"color": "#4285F4",
"shared_with": ["user2", "user3", "user4"],
"visibility": "team"
},
{
"id": "cal2",
"name": "Personal Calendar",
"owner_id": "user1",
"description": "Personal appointments and reminders",
"color": "#0F9D58",
"shared_with": ["user5"],
"visibility": "private"
},
{
"id": "cal3",
"name": "Project Calendar",
"owner_id": "user2",
"description": "Project-specific deadlines and milestones",
"color": "#DB4437",
"shared_with": ["user1", "user3", "user4"],
"visibility": "public"
}
]
}