public async Task <IActionResult> Get(Guid workoutId)
        {
            User user = _userService.GetByEmail(User.Identity.Name);
            var  res  = await _workoutService.GetWorkoutOptions(user, workoutId);

            return(Ok(res));
        }