Fix deployer LRN field in project

This commit is contained in:
IshaVenikar
2024-10-16 15:37:09 +05:30
committed by nabarun
parent 853a1024b3
commit 82dab8ce21
2 changed files with 2 additions and 2 deletions
+1 -1
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
+1 -1
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,