Fixed Broken Unit Tests

This commit is contained in:
Andreas Österreicher
2018-02-16 11:43:59 +01:00
parent 2ec77ad9bd
commit 1e4fc86be5
8 changed files with 0 additions and 114 deletions
@@ -1,78 +0,0 @@
<?php
/**
* FH-Complete
*
* @package FHC-API
* @author FHC-Team
* @copyright Copyright (c) 2016, fhcomplete.org
* @license GPLv3
* @link http://fhcomplete.org
* @since Version 1.0
* @filesource
*/
// ------------------------------------------------------------------------
if (!defined('BASEPATH')) exit('No direct script access allowed');
class Scrumteam extends APIv1_Controller
{
/**
* Scrumteam API constructor.
*/
public function __construct()
{
parent::__construct();
// Load model ScrumteamModel
$this->load->model('project/scrumteam_model', 'ScrumteamModel');
}
/**
* @return void
*/
public function getScrumteam()
{
$scrumteam_kurzbz = $this->get('scrumteam_kurzbz');
if (isset($scrumteam_kurzbz))
{
$result = $this->ScrumteamModel->load($scrumteam_kurzbz);
$this->response($result, REST_Controller::HTTP_OK);
}
else
{
$this->response();
}
}
/**
* @return void
*/
public function postScrumteam()
{
if ($this->_validate($this->post()))
{
if (isset($this->post()['scrumteam_kurzbz']))
{
$result = $this->ScrumteamModel->update($this->post()['scrumteam_kurzbz'], $this->post());
}
else
{
$result = $this->ScrumteamModel->insert($this->post());
}
$this->response($result, REST_Controller::HTTP_OK);
}
else
{
$this->response();
}
}
private function _validate($scrumteam = NULL)
{
return true;
}
}