[Contesting] Restoring QSO table.

This commit is contained in:
Andreas
2020-12-28 19:55:51 +01:00
parent bccfa6762b
commit 9e790340d7
5 changed files with 141 additions and 31 deletions

View File

@@ -51,4 +51,16 @@ class Contesting extends CI_Controller {
}
}
public function getSessionQsos() {
//load model
$this->load->model('Contesting_model');
$qso = $this->input->post('qso');
// get QSOs to fill the table
$data = $this->Contesting_model->getSessionQsos($qso);
return json_encode($data);
}
}