mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-28 17:39:28 +00:00
9168479912
- 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
13 lines
203 B
PHP
13 lines
203 B
PHP
<?php
|
|
class Kontakt_model extends DB_Model
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = 'public.tbl_kontakt';
|
|
$this->pk = 'kontakt_id';
|
|
}
|
|
} |