Skip to content

S28 3158/report updates #1102

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jun 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,9 @@ def coverageExclusionList = [
]

def duplicateCodeExclusionList = [
'**uk/gov/hmcts/reform/preapi/entities/**'
'**uk/gov/hmcts/reform/preapi/entities/**',
'**uk/gov/hmcts/reform/preapi/controllers/LegacyReportController*',
'**uk/gov/hmcts/reform/preapi/services/LegacyReportService*'
]

sonarqube {
Expand Down
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ services:
POSTGRES_DB: api
POSTGRES_PASSWORD: pre
POSTGRES_USER: pre
TZ: 'UTC'
PGTZ: 'UTC'
ports:
- 5432:5432

Expand Down
1 change: 1 addition & 0 deletions docker/database/init-db.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ set -e

psql -v ON_ERROR_STOP=1 --username postgres <<-EOSQL
CREATE EXTENSION IF NOT EXISTS pgcrypto;
SET TIME ZONE 'UTC';
EOSQL
2 changes: 1 addition & 1 deletion infrastructure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ module "pre_api" {
api_mgmt_rg = "ss-${var.env}-network-rg"
api_mgmt_name = "sds-api-mgmt-${var.env}"
display_name = "Pre Recorded Evidence API"
revision = "103"
revision = "104"
product_id = module.pre_product[0].product_id
path = "pre-api"
service_url = local.apim_service_url
Expand Down
Loading