Skip to content
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

SSCSCI-579 - Elinks feature toggling #3524

Merged
merged 8 commits into from
Nov 23, 2023
Merged
Show file tree
Hide file tree
Changes from 6 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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ dependencies {
implementation group: 'com.github.hmcts', name: 'document-management-client', version: '7.0.0'
implementation group: 'com.github.hmcts', name: 'cmc-pdf-service-client', version: '7.0.1'

implementation group: 'com.github.hmcts', name: 'sscs-common', version: '5.1.2'
implementation group: 'com.github.hmcts', name: 'sscs-common', version: '743db47'
implementation group: 'com.github.hmcts', name: 'sscs-pdf-email-common', version: '1.8.10'

implementation group: 'com.azure', name: 'azure-core', version: '1.42.0'
Expand Down
2 changes: 1 addition & 1 deletion charts/sscs-tribunals-api/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: sscs-tribunals-api
home: https://github.com/hmcts/sscs-tribunals-case-api
version: 0.0.119
version: 0.0.120
description: SSCS Tribunals Case API
maintainers:
- name: HMCTS SSCS Team
Expand Down
1 change: 1 addition & 0 deletions charts/sscs-tribunals-api/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ java:
WORK_ALLOCATION_FEATURE: false
HEARINGS_EVENT_QUEUE_NAME: tribunals-to-hearing-api-{{ .Values.global.environment }}
CASE_ACCESS_MANAGEMENT_FEATURE: false
ELINKS_V2_FEATURE_ENABLED: false

idam-pr:
enabled: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ pdf.api.url=${PDF_API_URL:http://rpe-pdf-service-aat.service.core-compute-aat.in

document_management.url=${TEST_DOCUMENT_MANAGEMENT_URL:http://dm-store:5005}
feature.case-access-management.enabled=true
feature.elinksV2.enabled: ${ELINKS_V2_FEATURE_ENABLED:false}
1 change: 1 addition & 0 deletions src/main/resources/config/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ feature.snl.adjournment.enabled: ${ADJOURNMENT_FEATURE:false}
feature.case-access-management.enabled: ${CASE_ACCESS_MANAGEMENT_FEATURE:false}
feature.postHearings.enabled: ${POST_HEARINGS_FEATURE:false}
feature.postHearingsB.enabled: ${POST_HEARINGS_B_FEATURE:false}
feature.elinksV2.enabled: ${ELINKS_V2_FEATURE_ENABLED:false}

case_document_am.url=${CASE_DOCUMENT_AM_URL:http://localhost:4455}

Expand Down