This commit is contained in:
backuppc
2025-07-08 14:34:38 +09:00
parent 0d2da98470
commit 447cb691d7
9 changed files with 384 additions and 9 deletions

View File

@@ -186,11 +186,11 @@ namespace VNCServerList.Web.Controllers
[HttpPost]
[Route("set-vnc-path")]
public IHttpActionResult SetVNCPath([FromBody] dynamic data)
public IHttpActionResult SetVNCPath([FromBody] VNCPathRequest data)
{
try
{
string path = data.path;
string path = data.Path;
if (string.IsNullOrEmpty(path))
{
return BadRequest("VNC Viewer 경로가 제공되지 않았습니다.");