Skip to content

Commit

Permalink
[CHORE] Fix bdc
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Sikina committed Sep 26, 2024
1 parent 83058b9 commit e124ce7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public class ConceptRepository {
private static final String ALLOW_FILTERING_Q = """
WITH allow_filtering AS (
SELECT
concept_node.concept_node_id AS concept_node_id,
(string_agg(concept_node_meta.value, ' ') NOT LIKE '%yes%') AS allowFiltering
concept_node.concept_path AS concept_path,
(string_agg(concept_node_meta.value, ' ') NOT LIKE '%true%') AS allowFiltering
FROM
concept_node
JOIN concept_node_meta ON
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application-bdc.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ server.port=80

dashboard.enable.extra_details=true

filtering.unfilterable_concepts=stigmatizing
filtering.unfilterable_concepts=stigmatized
2 changes: 1 addition & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ dashboard.nonmeta-columns=abbreviation,name
dashboard.enable.extra_details=true
dashboard.enable.bdc_hack=true

filtering.unfilterable_concepts=stigmatizing
filtering.unfilterable_concepts=stigmatized
2 changes: 1 addition & 1 deletion src/test/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ dashboard.nonmeta-columns=abbreviation,name
dashboard.enable.extra_details=true
dashboard.enable.bdc_hack=false

filtering.unfilterable_concepts=stigmatizing
filtering.unfilterable_concepts=stigmatized

0 comments on commit e124ce7

Please sign in to comment.