Beispiel #1
0
        public ActionResult <IEnumerable <Keep> > GetAction()
        {
            var id = HttpContext.User.Identity.Name;
            IEnumerable <Keep> result = _repo.GetAllUserKeeps(id);

            return(Ok(result));
        }