+ Add api of ci result.

This commit is contained in:
zhujinyong
2022-03-31 16:27:11 +08:00
parent 943e32c7a9
commit 8da5fe3c90
2 changed files with 32 additions and 0 deletions
+30
View File
@@ -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());
}
}
+2
View File
@@ -158,4 +158,6 @@ $routes['/z/files/:id/content'] = 'zfileContent';
$routes['/gitlab/webhook'] = 'gitlabWebhook';
$routes['/ciresults'] = 'ciresults';
$config->routes = $routes;