feat(pipelines): 添加查询 commit logs 接口。

This commit is contained in:
Ivan Li
2021-03-07 22:53:16 +08:00
parent bba7963949
commit f00f75673b
6 changed files with 82 additions and 2 deletions

View File

@ -0,0 +1,5 @@
import { Project } from '../../projects/project.entity';
export interface ListLogsOption {
project: Project;
branch: string;
}

View File

@ -0,0 +1 @@
export const LIST_LOGS_TASK = 'LIST_LOGS_TASK';