[server][api] Fix mkdir response

This commit is contained in:
Abhishek Shroff
2024-11-18 11:09:09 +05:30
parent 908974dfc7
commit 06222a08f8
+1 -1
View File
@@ -34,5 +34,5 @@ func handleMkdirRequest(c *gin.Context) {
panic(err)
}
c.JSON(200, r)
c.JSON(200, createInfo(r.Info))
}