public ActionResult <IEnumerable <Keep> > FindKeepsByUserId()
 {
     try
     {
         var id = HttpContext.User.FindFirstValue("Id");
         return(Ok(_repo.FindKeepsByUserId(id)));
     }
     catch (Exception e)
     {
         return(BadRequest(e.Message));
     }
 }