Added backend for continent update

This commit is contained in:
Andreas Kristiansen
2025-11-07 09:28:57 +01:00
parent 5c84220bd3
commit 3df34e43c1
7 changed files with 53 additions and 49 deletions

View File

@@ -338,17 +338,6 @@ class Update extends CI_Controller {
$this->logbook_model->check_missing_dxcc_id($all);
}
public function check_missing_continent() {
$this->load->model('user_model');
if (!$this->user_model->authorize(99)) {
$this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
$this->load->model('logbook_model');
$this->logbook_model->check_missing_continent();
}
public function check_missing_grid($all = false){
$this->load->model('user_model');
if (!$this->user_model->authorize(99)) {