Esempio n. 1
0
 public async Task <IActionResult> PushSyncRequest([FromBody] List <NoteSyncRequestModel> model)
 {
     try
     {
         return(Ok(await _noteService.GetForPush(model, GetUserId())));
     }
     catch
     {
         return(BadRequest());
     }
 }