Beispiel #1
0
        public async Task <IActionResult> GetNotificationData(int userId)
        {
            var response = await _userService.GetNotificationData(userId);

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