public ActionResult Create(SpellCreate spell)
        {
            if (!ModelState.IsValid)
            {
                return(View(spell));
            }

            var userId  = Guid.Parse(User.Identity.GetUserId());
            var service = new SpellService(userId);

            service.CreateSpell(spell);
            return(RedirectToAction("Index"));
        }