Beispiel #1
0
        public ActionResult GetImages(int userId, int width, int height, string mode)
        {
            var response = _userService.GetImages(userId, width, height, mode) as UserImageListResponse;

            return(Ok(APIResponse.CreateResponse(_jwtAuthentication.Value, _httpContextAccessor.HttpContext.Request, response)));
        }