1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 14:04:46 -04:00

Implemented run action API in relevant feature plugins

This commit is contained in:
f4exb
2021-10-22 02:01:33 +02:00
parent 9f42957585
commit 920fa82022
55 changed files with 1697 additions and 13 deletions
+9 -3
View File
@@ -217,11 +217,17 @@ int Map::webapiActionsPost(
{
QString id = *swgMapActions->getFind();
if (getMessageQueueToGUI())
if (getMessageQueueToGUI()) {
getMessageQueueToGUI()->push(MsgFind::create(id));
}
}
return 202;
return 202;
}
else
{
errorMessage = "Unknown action";
return 400;
}
}
else
{