+ [task#124019,doing,0.2h] add tag table config.

This commit is contained in:
caoyanyi
2024-07-23 15:23:02 +08:00
committed by 李阳
parent 1e2fe757c8
commit c6d1b32f68
+14
View File
@@ -264,3 +264,17 @@ $config->repo->reviewDtable->fieldList['openedBy']['type'] = 'user';
$config->repo->reviewDtable->fieldList['assignedTo']['type'] = 'user';
$config->repo->reviewDtable->fieldList['openedDate']['type'] = 'datetime';
$config->repo->dtable->tag = new stdclass();
$config->repo->dtable->tag->fieldList['name']['title'] = $lang->repo->tag;
$config->repo->dtable->tag->fieldList['name']['type'] = 'title';
$config->repo->dtable->tag->fieldList['name']['name'] = 'name';
$config->repo->dtable->tag->fieldList['committer']['title'] = $lang->repo->committer;
$config->repo->dtable->tag->fieldList['committer']['type'] = 'text';
$config->repo->dtable->tag->fieldList['committer']['sortType'] = true;
$config->repo->dtable->tag->fieldList['date']['title'] = $lang->repo->date;
$config->repo->dtable->tag->fieldList['date']['name'] = 'date';
$config->repo->dtable->tag->fieldList['date']['type'] = 'datetime';
$config->repo->dtable->tag->fieldList['date']['formatDate'] = 'YYYY-MM-dd hh:mm';