+ Add api of ci result.
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/**
|
||||
* The ciresults entry point of ZenTaoPMS.
|
||||
*
|
||||
* @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
||||
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
||||
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
||||
* @package entries
|
||||
* @version 1
|
||||
* @link http://www.zentao.net
|
||||
*/
|
||||
class ciresultsEntry extends entry
|
||||
{
|
||||
/**
|
||||
* POST method.
|
||||
*
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
public function post()
|
||||
{
|
||||
$control = $this->loadController('ci', 'commitResult');
|
||||
$control->commitResult();
|
||||
|
||||
$data = $this->getData();
|
||||
if(isset($data->result) and $data->result == 'fail') return $this->sendError(400, $data->message);
|
||||
|
||||
$this->send(201, array());
|
||||
}
|
||||
}
|
||||
@@ -158,4 +158,6 @@ $routes['/z/files/:id/content'] = 'zfileContent';
|
||||
|
||||
$routes['/gitlab/webhook'] = 'gitlabWebhook';
|
||||
|
||||
$routes['/ciresults'] = 'ciresults';
|
||||
|
||||
$config->routes = $routes;
|
||||
|
||||
Reference in New Issue
Block a user