Fix deployer LRN field in project

This commit is contained in:
IshaVenikar 2024-10-07 19:25:15 +05:30 committed by Nabarun
parent cedad71c44
commit 34cf551cba
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ export class Project {
@Column('varchar', { nullable: true })
auctionId?: string | null;
@Column('varchar', { nullable: true })
@Column({ type: 'simple-array', nullable: true })
deployerLrn?: string[] | null;
// TODO: Compute template & framework in import repository

View File

@ -718,7 +718,7 @@ export class Service {
const applicationRecordId = record.id;
const applicationRecordData = record.attributes;
for (const deployer in deployerLrns) {
for (const deployer of deployerLrns) {
// Create deployment with prod branch and latest commit
const deploymentData = {
project,