Test Husky pre-commit hook.
This commit is contained in:
parent
c90f3bbab1
commit
8771b7b19b
|
@ -15,18 +15,12 @@ class Form extends CI_Controller
|
|||
}
|
||||
public function submit()
|
||||
{
|
||||
|
||||
|
||||
|
||||
if (!$this->session->userdata('logged_in')) {
|
||||
redirect('users/login');
|
||||
}
|
||||
|
||||
$form_data = json_decode($this->input->raw_input_stream, true);
|
||||
$this->load->model('Form_model');
|
||||
|
||||
|
||||
|
||||
if ($this->Form_model->save_form($form_data)) {
|
||||
$response = array('status' => 'success', 'message' => 'Form submitted successfully.');
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue