Skip to content

Commit

Permalink
Merge pull request #33428 from dimagi/smh/sscs-dynamically-update-res…
Browse files Browse the repository at this point in the history
…ults-ff

Modify Pprent/child relationship FF for Dynamically Updating Results in SSCS
  • Loading branch information
stephherbers authored Sep 8, 2023
2 parents 2ee137f + aa486e0 commit 11e0fe0
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions corehq/toggles/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1040,23 +1040,24 @@ def _ensure_valid_randomness(randomness):
namespaces=[NAMESPACE_DOMAIN]
)

DYNAMICALLY_UPDATE_SEARCH_RESULTS = StaticToggle(
'dynamically_update_search_results',
"In case search with split screen case search enabled, search results update when a search field is updated"
" without requiring the user to manually press a button to search.",
SPLIT_SCREEN_CASE_SEARCH = StaticToggle(
'split_screen_case_search',
"Split screen case search: In case search, show the search filters in a sidebar on the left and the results"
" on the right.",
TAG_CUSTOM,
help_link='https://confluence.dimagi.com/display/USH/Split+Screen+Case+Search',
namespaces=[NAMESPACE_DOMAIN],
parent_toggles=[SYNC_SEARCH_CASE_CLAIM]
)

SPLIT_SCREEN_CASE_SEARCH = StaticToggle(
'split_screen_case_search',
"Split screen case search: In case search, show the search filters in a sidebar on the left and the results"
" on the right.",
DYNAMICALLY_UPDATE_SEARCH_RESULTS = StaticToggle(
'dynamically_update_search_results',
"In case search with split screen case search enabled, search results update when a search field is updated"
" without requiring the user to manually press a button to search.",
TAG_CUSTOM,
help_link='https://confluence.dimagi.com/display/USH/Split+Screen+Case+Search',
namespaces=[NAMESPACE_DOMAIN],
parent_toggles=[SYNC_SEARCH_CASE_CLAIM, DYNAMICALLY_UPDATE_SEARCH_RESULTS]
parent_toggles=[SPLIT_SCREEN_CASE_SEARCH]
)

USH_USERCASES_FOR_WEB_USERS = StaticToggle(
Expand Down

0 comments on commit 11e0fe0

Please sign in to comment.