- Added method getStudiengangBewerbung to controller Studiengang2

- Renamed method loadList to loadTree
- Improved method loadTree
- Added method getStudiengangBewerbung to model Studiengang_model
This commit is contained in:
bison
2016-09-06 15:52:34 +02:00
parent 9f919e6e7b
commit 0b5644d6f1
3 changed files with 71 additions and 11 deletions
@@ -73,4 +73,11 @@ class Studiengang2 extends APIv1_Controller
$this->response();
}
}
public function getStudiengangBewerbung()
{
$result = $this->StudiengangModel->getStudiengangBewerbung();
$this->response($result, REST_Controller::HTTP_OK);
}
}