4 files changed
+10
-10
lines changed- .env.example+3-3
- .github/workflows/backend_deploy_workflow.yaml+9-1
- Dockerfile+3-1
- api/handle_sanction_checks.go+18-1
- api/handle_scenario_test_run.go+8-1
- api/handle_version.go+19
- api/routes.go+2
- cmd/batch_ingestion.go+6-3
- cmd/migrations.go+4-1
- cmd/scheduled_executor.go+6-3
- cmd/send_pending_webhook_events.go+6-3
- cmd/server.go+10-4
- cmd/worker.go+6-3
- dto/sanction_check_dto.go+2
- dto/scenario_testrun.go+13-1
- infra/opensanctions.go+4
- infra/sentry.go+2-1
- infra/tracing.go+2-1
- integration_test/init_test.go+1-1
- main.go+12-7
- models/feature_access.go+5
- models/organization_feature_access.go+53-1
- models/organization_feature_access_test.go+163
- models/sanction_check.go+1
- repositories/dbmodels/db_sanction_check_match.go+2
- repositories/migrations/20250226112700_add_sanction_check_match_enriched.sql+9
- repositories/opensanctions_repository.go+61-18
- repositories/sanction_check_repository.go+29-2
- repositories/scenario_iterations_write.go+11-6
- usecases/evaluate_scenario/evaluate_scenario.go+13-10
- usecases/feature_access/feature_access_reader.go+18-6
- usecases/sanction_check_usecase.go+37-3
- usecases/sanction_check_usecase_test.go+9-9
- usecases/scenarios/scenario_validation.go+1-7
- usecases/usecases.go+47
- usecases/usecases_with_creds.go+4
- usecases/version_usecase.go+9
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
68 | 68 | | |
69 | 69 | | |
70 | 70 | | |
71 | | - | |
| 71 | + | |
72 | 72 | | |
73 | 73 | | |
74 | 74 | | |
| |||
87 | 87 | | |
88 | 88 | | |
89 | 89 | | |
90 | | - | |
| 90 | + | |
91 | 91 | | |
92 | 92 | | |
93 | 93 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
2 | | - | |
3 | | - | |
4 | | - | |
5 | | - | |
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
0 commit comments