Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Birloi Florian authored and Birloi Florian committed Jan 19, 2024
2 parents 474ea0f + 8807a2c commit 23cdef7
Show file tree
Hide file tree
Showing 55 changed files with 22 additions and 3,203 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { MigrationInterface, QueryRunner } from 'typeorm';

export class AddVideLinkOptionalInHistory1705667201946
implements MigrationInterface
{
name = 'AddVideLinkOptionalInHistory1705667201946';

public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
`ALTER TABLE "application_history" ALTER COLUMN "video_link" DROP NOT NULL`,
);
}

public async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
`ALTER TABLE "application_history" ALTER COLUMN "video_link" SET NOT NULL`,
);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class ApplicationHistory
@Column({ type: 'text', name: 'login_link', nullable: true })
loginLink: string;

@Column({ type: 'text', name: 'video_link' })
@Column({ type: 'text', name: 'video_link', nullable: true })
videoLink: string;

@Column({ type: 'text', name: 'logo', nullable: true })
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/common/helpers/format.helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@ export const mapGroupsToSelect = (item: any): ISelectData =>
item.isNew
? {
value: item.id,
label: item.abbreviation,
label: item.name,
isNew: item.isNew,
}
: {
value: item.id,
label: item.abbreviation,
label: item.name,
};

export const str2bool = (value: string) => {
Expand Down
31 changes: 0 additions & 31 deletions terraform/.gitignore

This file was deleted.

62 changes: 0 additions & 62 deletions terraform/.terraform.lock.hcl

This file was deleted.

44 changes: 0 additions & 44 deletions terraform/amplify-centrucivic.tf

This file was deleted.

43 changes: 0 additions & 43 deletions terraform/amplify-practice4good.tf

This file was deleted.

53 changes: 0 additions & 53 deletions terraform/amplify.tf

This file was deleted.

18 changes: 0 additions & 18 deletions terraform/amplify/amplify.yml

This file was deleted.

91 changes: 0 additions & 91 deletions terraform/app-runner.tf

This file was deleted.

Loading

0 comments on commit 23cdef7

Please sign in to comment.