* fix for check zentao errors.
This commit is contained in:
@@ -30,6 +30,7 @@ $whiteList[] = 'project-sendmail';
|
||||
$whiteList[] = 'release-commonaction';
|
||||
$whiteList[] = 'task-commonaction';
|
||||
$whiteList[] = 'task-sendmail';
|
||||
$whiteList[] = 'testtask-sendmail';
|
||||
$whiteList[] = 'user-login';
|
||||
$whiteList[] = 'user-deny';
|
||||
$whiteList[] = 'user-logout';
|
||||
|
||||
@@ -640,6 +640,15 @@ CREATE TABLE IF NOT EXISTS `zt_user` (
|
||||
UNIQUE KEY `account` (`account`),
|
||||
KEY `company` (`company`,`dept`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
-- DROP TABLE IF EXISTS `zt_userContact`;
|
||||
CREATE TABLE IF NOT EXISTS `zt_userContact` (
|
||||
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`company` mediumint(8) unsigned NOT NULL,
|
||||
`account` char(30) NOT NULL,
|
||||
`listName` varchar(60) NOT NULL,
|
||||
`userList` text NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
-- DROP TABLE IF EXISTS `zt_userGroup`;
|
||||
CREATE TABLE IF NOT EXISTS `zt_userGroup` (
|
||||
`company` mediumint(8) unsigned NOT NULL,
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
* $config->svn->repos['pms']['password'] = 'pass';
|
||||
*
|
||||
*/
|
||||
$config->svn = new stdClass();
|
||||
$config->svn->encodings = 'utf-8, gbk';
|
||||
$config->svn->client = '';
|
||||
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
<?php
|
||||
$config->webapp = new stdClass();
|
||||
$config->webapp->url = 'http://www.zentao.com';
|
||||
$config->webapp->apiRoot = $config->webapp->url . '/webapp-';
|
||||
|
||||
$config->webapp->create = new stdClass();
|
||||
$config->webapp->create->requiredFields = 'name,url,target';
|
||||
|
||||
Reference in New Issue
Block a user