Skip to content

Commit

Permalink
Merge pull request #106 from hmcts/PUB-2207
Browse files Browse the repository at this point in the history
PUB-2207 Add OPA results list type
  • Loading branch information
ChrisS1512 authored Jan 16, 2024
2 parents 8a18d81 + 07b4cf8 commit 3b7c61b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ publishing {
}

group = 'com.github.hmcts'
version = '2.1.15'
version = '2.1.16'

java {
toolchain {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ public enum ListType {
CARE_STANDARDS_LIST(NATIONAL, CFT_IDAM, ALL_VERIFIED_THIRD_PARTY_CFT_ROLES),
PRIMARY_HEALTH_LIST(NATIONAL, CFT_IDAM, ALL_VERIFIED_THIRD_PARTY_CFT_ROLES),
OPA_PRESS_LIST(VENUE, PI_AAD, ALL_VERIFIED_THIRD_PARTY_PRESS_ROLES, null, null, true, false),
OPA_PUBLIC_LIST(VENUE, PI_AAD, ALL_VERIFIED_THIRD_PARTY_PRESS_ROLES);
OPA_PUBLIC_LIST(VENUE, PI_AAD, ALL_VERIFIED_THIRD_PARTY_PRESS_ROLES),
OPA_RESULTS(VENUE, PI_AAD, ALL_VERIFIED_THIRD_PARTY_PRESS_ROLES);

/**
* Flag that represents the Location Type level the list displays at.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import java.util.stream.Collectors;

public final class ListTypeHelper {
private static final Set<String> ACRONYMS = Set.of("COP", "ET", "IAC", "SSCS", "SJP");
private static final Set<String> ACRONYMS = Set.of("COP", "ET", "IAC", "OPA", "SJP", "SSCS");
private static final Set<String> CONJUNCTIONS = Set.of("and");

private ListTypeHelper() {
Expand Down

0 comments on commit 3b7c61b

Please sign in to comment.