Beispiel #1
0
 public ActionResult <IEnumerable <Keep> > Get(string UserId)
 {
     UserId = HttpContext.User.FindFirstValue("Id");
     return(Ok(_repo.GetKeepbyCreator(UserId)));
 }