1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-07 08:24:43 -04:00

Web API: implemented /sdrangel/deviceset/{deviceSetIndex}/focus PATCH

This commit is contained in:
f4exb
2018-01-06 03:46:53 +01:00
parent 13a0f445d0
commit 8a032d0532
97 changed files with 1334 additions and 86 deletions
+9
View File
@@ -748,6 +748,15 @@ int WebAPIAdapterSrv::devicesetGet(
}
}
int WebAPIAdapterSrv::devicesetFocusPatch(
int deviceSetIndex __attribute__((unused)),
SWGSDRangel::SWGSuccessResponse& response __attribute__((unused)),
SWGSDRangel::SWGErrorResponse& error)
{
*error.getMessage() = QString("Not supported in server instance");
return 400;
}
int WebAPIAdapterSrv::devicesetDevicePut(
int deviceSetIndex,
SWGSDRangel::SWGDeviceListItem& response,