mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-24 10:22:18 +00:00
- Moved class Studiengang to Studiengang2 to prevent class name conflicts
- Added a route rule to let to call Studiengang2 controller with the urn /api/v1/organisation/studiengang/ - Moved Kontank controller to /api/v1/person - Kontakt controller has two method getKontakt and postKontakt
This commit is contained in:
@@ -10,12 +10,13 @@ class FHC_Model extends CI_Model
|
||||
$this->load->helper('language');
|
||||
$this->lang->load('fhc_model');
|
||||
$this->lang->load('fhcomplete');
|
||||
if (is_null($uid) && isset($this->session->uid))
|
||||
|
||||
$uid = NULL;
|
||||
if(is_null($uid) && isset($this->session->uid))
|
||||
{
|
||||
$uid = $this->session->uid;
|
||||
else
|
||||
$uid = null;
|
||||
}
|
||||
$this->load->library('FHC_DB_ACL', array('uid' => $uid));
|
||||
//$this->load->library('FHC_DB_ACL');
|
||||
}
|
||||
|
||||
/** ---------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user