Exemplo n.º 1
0
 //We have to allow anonymous because we want other people to see photos
 public async Task <IActionResult> GetAllPhotosForUser(int userId)
 {
     return(Ok(await _photosService.GetAllPhotosForUser(userId)));
 }