コード例 #1
0
ファイル: KeepsController.cs プロジェクト: terryphelps/Keeper
 public ActionResult <Keep> GetUserKeeps(string userId)
 {
     userId = HttpContext.User.FindFirstValue("Id");
     return(Ok(_service.FindByUserId(userId)));
 }