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

Server: Web API: implemented /sdrangel/devicesets GET

This commit is contained in:
f4exb
2017-12-21 00:39:57 +01:00
parent e4678ec70c
commit 322ff52723
2 changed files with 16 additions and 4 deletions
+8
View File
@@ -679,6 +679,14 @@ int WebAPIAdapterSrv::instancePresetDelete(
return 200;
}
int WebAPIAdapterSrv::instanceDeviceSetsGet(
SWGSDRangel::SWGDeviceSetList& response,
SWGSDRangel::SWGErrorResponse& error __attribute__((unused)))
{
getDeviceSetList(&response);
return 200;
}
int WebAPIAdapterSrv::instanceDeviceSetsPost(
bool tx,
SWGSDRangel::SWGSuccessResponse& response,