// GET: Spell
        public ActionResult Index()
        {
            var userId  = Guid.Parse(User.Identity.GetUserId());
            var service = new SpellService(userId);
            var model   = service.GetSpells();

            return(View(model));
        }