/**
  * @param $accountId
  * @param $fileId
  * @return JsonResponse
  */
 public function deleteFileAction($accountId, $fileId)
 {
     $this->configuration->deleteFile($accountId, $fileId);
     return $this->createJsonResponse([], 204);
 }