public async Task<IActionResult> Create([Bind("Name,Url,IntervalInMinutes")] AlertJob alertJob)
        {
            if (ModelState.IsValid)
            {
                var userId = Guid.Parse(User.FindFirst(ClaimTypes.NameIdentifier).Value);

                await alertJobService.CreateAlertJobAsync(userId, alertJob);

                return RedirectToAction(nameof(Index));
            }
            return View(alertJob);
        }