Exemplo n.º 1
0
        public async Task <IActionResult> GetAllTimers()
        {
            var userId = HttpContext.User.Identity.Name;
            var timers = await timerService.GetAllTimersForUserAsync(userId);

            return(Content(JsonSerializer.Serialize(timers)));
        }