feat: Update application status handling and improve build configuration

- Added handling for the COMPLETED application status in the CoverageRepositoryImpl to return 'confirmed'.
- Updated mobile client build and run commands in the makefile to include `--dart-define-from-file=../../config.dev.json` for better configuration management.
This commit is contained in:
Achintha Isuru
2026-02-01 13:20:24 -05:00
parent 6d70bcc5d0
commit 9f8b60d571
5 changed files with 3 additions and 5978 deletions

View File

@@ -186,6 +186,7 @@ class CoverageRepositoryImpl implements CoverageRepository {
case dc.ApplicationStatus.PENDING:
case dc.ApplicationStatus.REJECTED:
case dc.ApplicationStatus.NO_SHOW:
case dc.ApplicationStatus.COMPLETED:
return 'confirmed';
}
}