kin: KIN-OBS-025 PM-логи недоступны в pipeline_log: добавить инструментацию PM-шага
This commit is contained in:
parent
dfdf13cf7e
commit
7ef0b9d4ef
2 changed files with 6 additions and 6 deletions
|
|
@ -190,7 +190,7 @@ export interface ProjectLink {
|
|||
id: number
|
||||
from_project: string
|
||||
to_project: string
|
||||
link_type: string
|
||||
type: string
|
||||
description: string | null
|
||||
created_at: string
|
||||
}
|
||||
|
|
@ -415,7 +415,7 @@ export const api = {
|
|||
get<PipelineLog[]>(`/pipelines/${pipelineId}/logs?since_id=${sinceId}`),
|
||||
projectLinks: (projectId: string) =>
|
||||
get<ProjectLink[]>(`/projects/${projectId}/links`),
|
||||
createProjectLink: (data: { from_project: string; to_project: string; link_type: string; description?: string }) =>
|
||||
createProjectLink: (data: { from_project: string; to_project: string; type: string; description?: string }) =>
|
||||
post<ProjectLink>('/project-links', data),
|
||||
deleteProjectLink: (id: number) =>
|
||||
del<void>(`/project-links/${id}`),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue