From dcd910cea808e1526a18689f889d3c9a96dd2e65 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Mon, 9 Sep 2019 03:17:56 +0100 Subject: [PATCH] returned object for compatibility XMLrequest --- src/Yavsc/ApiControllers/Blogspot/FileSystemApiController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Yavsc/ApiControllers/Blogspot/FileSystemApiController.cs b/src/Yavsc/ApiControllers/Blogspot/FileSystemApiController.cs index fb77b1e4..09d04f94 100644 --- a/src/Yavsc/ApiControllers/Blogspot/FileSystemApiController.cs +++ b/src/Yavsc/ApiControllers/Blogspot/FileSystemApiController.cs @@ -113,7 +113,7 @@ namespace Yavsc.ApiControllers ); var info = user.MoveUserFileToDir(query.id, query.to); if (!info.Done) return new BadRequestObjectResult(info); - return Ok(); + return Ok(new { moved = query.id }); } [HttpPost]