```
returns the total time spent on takes for a user and daily time statistics
- requires userId parameter
- returns 400 if userId is missing
- returns 404 if user not found
- includes totalTakesTime (in seconds) and dailyStats showing time logged per day
typical take object looks like:
```ts
{
id: string;
userId: string;
notes: string;
createdAt: Date;
mediaUrls: string[];
elapsedTime: number; // seconds
project: string;
totalTakesTime: number; // seconds
userName: string;
}
```
typical project object looks like:
```ts
{
projectName: string;
projectDescription: string;
projectBannerUrl: string;
totalTakesTime: number; // seconds
userId: string;
userName: string;
takesCount: number;
}
```
## 📜 License
The code is licensed under `MIT`! That means MIT allows for free use, modification, and distribution of the software, requiring only that the original copyright notice and disclaimer are included in copies. All artwork and images are copyright reserved but may be used with proper attribution to the authors.
© 2025-present Kieran Klukas