Skip to content

Commit

Permalink
fix: Add IN_QUEUE status to scheduler.
Browse files Browse the repository at this point in the history
  • Loading branch information
praju-aot committed Sep 9, 2024
1 parent 86034f8 commit 2b4c55a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scheduler/src/modules/common/enum/application-status.enum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export enum ApplicationStatus {
IN_PROGRESS = 'IN_PROGRESS',
IN_CART = 'IN_CART',
REJECTED = 'REJECTED',
IN_QUEUE = 'IN_QUEUE',
UNDER_REVIEW = 'UNDER_REVIEW',
WAITING_APPROVAL = 'WAITING_APPROVAL',
WAITING_PAYMENT = 'WAITING_PAYMENT',
Expand Down Expand Up @@ -41,4 +42,5 @@ export const ALL_APPLICATION_STATUS: readonly ApplicationStatus[] = [
ApplicationStatus.IN_PROGRESS,
ApplicationStatus.WAITING_PAYMENT,
ApplicationStatus.PAYMENT_COMPLETE,
ApplicationStatus.IN_QUEUE,
];

0 comments on commit 2b4c55a

Please sign in to comment.