feat(pipelines): normalization name.

This commit is contained in:
Ivan Li
2021-05-07 20:49:35 +08:00
parent 86c8bce9ea
commit 5a8b699e2f
3 changed files with 10 additions and 9 deletions

View File

@ -31,9 +31,9 @@ export class PipelinesService extends BaseDbService<Pipeline> {
return await this.repository.save(this.repository.create(dto));
}
async update(id: string, dto: UpdatePipelineInput) {
await this.isDuplicateEntityForUpdate(id, dto);
const old = await this.findOne(id);
async update(dto: UpdatePipelineInput) {
await this.isDuplicateEntityForUpdate(dto.id, dto);
const old = await this.findOne(dto.id);
return await this.repository.save(this.repository.merge(old, dto));
}