コード例 #1
0
 public ActionResult <IEnumerable <Keep> > GetAllKeepsByUserId(string userId)
 {
     userId = HttpContext.User.FindFirstValue("Id");
     return(Ok(_service.GetAllKeepsByUserId(userId)));
 }