Adding optional QVariant data argument to sendGetRequest to pass it to the server. Using hard coded sendGetRequest(GetBiddingsOfSpecificRound, 2) in fetchCurrentBiddings action to test this.

This commit is contained in:
2026-02-14 10:17:31 +01:00
parent 6e51aee3a5
commit bb5e894557
5 changed files with 13 additions and 12 deletions

View File

@ -300,7 +300,8 @@ void MainWindow::findItems() {
void MainWindow::fetchCurrentBiddings() {
showStatusMessage(tr("Invoked 'Server|Fetch current biddings'"));
emit m_core->sendGetRequest(GetBiddingsOfHighestRound);
// emit m_core->sendGetRequest(GetBiddingsOfHighestRound);
emit m_core->sendGetRequest(GetBiddingsOfSpecificRound, 2);
}
void MainWindow::execSettingsDialog() {