* [bug#55190] Get repos and commits in tutorial.

This commit is contained in:
xieqiyu
2024-09-14 09:59:33 +08:00
committed by 胡方舟
parent 8202aa1e3b
commit 7dd81df058
8 changed files with 51 additions and 16 deletions
+35 -2
View File
@@ -1522,8 +1522,8 @@ class tutorialModel extends model
$design->execution = 0;
$design->name = 'Test Design';
$design->status = '';
$design->createdBy = '';
$design->createdDate = '';
$design->createdBy = $this->app->user->account;
$design->createdDate = helper::now();
$design->editedBy = '';
$design->editedDate = '';
$design->assignedTo = '';
@@ -2485,4 +2485,37 @@ class tutorialModel extends model
$charter = $this->getCharter();
return array($charter->id => $charter);
}
/**
* 获取新手模式代码库键值对。
* Get repo pairs.
*
* @access public
* @return array
*/
public function getRepoPairs(): array
{
return array(1 => '[git] Test repo');
}
/**
* 获取新手模式提交记录。
* Get git commits.
*
* @access public
* @return array
*/
public function getCommits(): array
{
$commit = new stdClass();
$commit->id = 1;
$commit->repo = 1;
$commit->revision = 'bedeaaf39ef7084b9a455b9d9dba71e2db357201';
$commit->commit = 1;
$commit->comment = 'Git comment.';
$commit->committer = $this->app->user->account;
$commit->time = helper::now();
$commit->originalComment = 'Git comment.';
return array($commit->revision => $commit);
}
}