Example #1
0
        public ActionResult <IEnumerable <Keep> > GetAllUserKeeps()
        {
            string userid = HttpContext.User.Identity.Name;

            return(Ok(_repo.GetAllUserKeeps(userid)));
        }