Skip to content
Draft
2 changes: 1 addition & 1 deletion charts/ccd-data-store-api/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ description: Helm chart for the HMCTS CCD Data Store
name: ccd-data-store-api
apiVersion: v2
home: https://github.com/hmcts/ccd-data-store-api
version: 2.0.37
version: 2.0.38
maintainers:
- name: HMCTS CCD Dev Team
email: [email protected]
Expand Down
2 changes: 1 addition & 1 deletion charts/ccd-data-store-api/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ java:
CCD_DRAFT_TTL_DAYS: 180
TTL_GUARD: 365

DATA_STORE_S2S_AUTHORISED_SERVICES: ccd_data,ccd_gw,ccd_ps,probate_backend,divorce_ccd_submission,sscs,sscs_bulkscan,cmc,cmc_claim_store,cmc_claim_external_api,jui_webapp,pui_webapp,bulk_scan_orchestrator,fpl_case_service,iac,finrem_ccd_data_migrator,finrem_case_orchestration,employment_tribunals,ethos_repl_service,ccpay_bubble,ctsc_work_allocation,em_ccd_orchestrator,xui_webapp,bulk_scan_payment_processor,pcq_consolidation_service,em_npa_app,ecm_consumer,aac_manage_case_assignment,unspec_service,divorce_frontend,wa_task_configuration_api,wa_task_monitor,wa_task_management_api,ccd_case_document_am_api,hmc_cft_hearing_service,prl_citizen_frontend,prl_cos_api,et_cos,et_msg_handler,ccd_next_hearing_date_updater,et_sya_api,sptribs_case_api,civil_general_applications,fis_ds_update_web,pcs_frontend
DATA_STORE_S2S_AUTHORISED_SERVICES: ccd_data,ccd_gw,ccd_ps,probate_backend,divorce_ccd_submission,sscs,sscs_bulkscan,cmc,cmc_claim_store,cmc_claim_external_api,jui_webapp,pui_webapp,bulk_scan_orchestrator,fpl_case_service,iac,finrem_ccd_data_migrator,finrem_case_orchestration,employment_tribunals,ethos_repl_service,ccpay_bubble,ctsc_work_allocation,em_ccd_orchestrator,xui_webapp,bulk_scan_payment_processor,pcq_consolidation_service,em_npa_app,ecm_consumer,aac_manage_case_assignment,unspec_service,divorce_frontend,wa_task_configuration_api,wa_task_monitor,wa_task_management_api,ccd_case_document_am_api,hmc_cft_hearing_service,prl_citizen_frontend,prl_cos_api,et_cos,et_msg_handler,ccd_next_hearing_date_updater,et_sya_api,sptribs_case_api,civil_general_applications,fis_ds_update_web,pcs_frontend,pcs_api

DEFAULT_CACHE_MAX_IDLE_SEC: 14400
DEFAULT_CACHE_TTL_SEC: 30
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ protected CoreCaseDataApplication() {

@SuppressWarnings("checkstyle:CommentsIndentation") // commented out config predates
public static void main(String[] args) {

if (System.getProperty(LOGGING_LEVEL_CCD) != null) {
// Configurator.setLevel(LOGGING_LEVEL_CCD,
// Level.valueOf(System.getProperty(LOGGING_LEVEL_CCD).toUpperCase()));
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ idam.client.redirect_uri=http://ccd-data-store-api/oauth2redirect
idam.data-store.system-user.username=${IDAM_DATA_STORE_SYSTEM_USER_USERNAME:[email protected]}
idam.data-store.system-user.password=${IDAM_DATA_STORE_SYSTEM_USER_PASSWORD:Pa55word11}

ccd.s2s-authorised.services.case_user_roles=aac_manage_case_assignment
ccd.s2s-authorised.services.case_user_roles=aac_manage_case_assignment,pcs_api
ccd.defaultPrintUrl=${CCD_DEFAULTPRINTURL:http://localhost:3453/print/jurisdictions/:jid/case-types/:ctid/cases/:cid}
ccd.defaultPrintName=CCD Print
ccd.defaultPrintDescription=Printing for CCD
Expand Down