Skip to content

Commit

Permalink
add matching funds field to the project table
Browse files Browse the repository at this point in the history
  • Loading branch information
ae2079 committed Dec 17, 2024
1 parent 586747c commit e16bfc4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/entities/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,10 @@ export class Project extends BaseEntity {
@Column('integer', { array: true, default: [] })
batchNumbersWithSafeTransactions?: number[];

@Field(_type => Int, { nullable: true })
@Column({ type: 'int', nullable: true })
matchingFunds?: number;

// only projects with status active can be listed automatically
static pendingReviewSince(maximumDaysForListing: number) {
const maxDaysForListing = moment()
Expand Down

0 comments on commit e16bfc4

Please sign in to comment.