Example #1
0
        public async Task <IActionResult> GetAppsForUser(int userid)
        {
            var apps = await _repo.GetAppsForUser(userid);

            return(Ok(apps));
        }