Is your feature request related to a problem? Please describe.
Application doesn't provide any stats on barmen services
Describe the solution you'd like
A simple endpoint GET /api/v1/barmen/:id/statistics with the following response body:
{
hoursOfService: number;
barmenWhichSpendTheMostTimeWith: {
barman: Barman;
nbHours: number;
}[];
barmenWhichSpendTheLessTimeWith: {
barman: Barman;
nbHours: number;
}[];
}
Is your feature request related to a problem? Please describe.
Application doesn't provide any stats on barmen services
Describe the solution you'd like
A simple endpoint
GET /api/v1/barmen/:id/statisticswith the following response body: