Example #1
0
        public async Task <IActionResult> DeleteNotificationsAsync()
        {
            var userId = GetCurrentUserId();
            await _service.DeleteAllAsync(new UserRequest(userId));

            return(NoContent());
        }