@Path("/current/durations")
public Response minutesForCurrentMonthWeekAndDay()
{
DateMidnight now = now(settings.get().getTimeZone());
int year = now.year().get();
int month = now.monthOfYear().get();
int week = now.weekOfWeekyear().get();
int day = now.dayOfMonth().get();
Duration currentMonth = minutes(repository.findByYearMonth(year, month));
Duration currentWeek = minutes(repository.findByYearWeek(year, week));
Duration today = minutes(repository.findByYearMonthDay(year, month, day));