Skip to content

Commit

Permalink
move location of DYNAMICALLY_UPDATE_SEARCH_RESULTS toggle declaration…
Browse files Browse the repository at this point in the history
…-- no logic change
  • Loading branch information
stephherbers committed Sep 8, 2023
1 parent 8db409b commit aa486e0
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions corehq/toggles/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1030,16 +1030,6 @@ 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.",
TAG_CUSTOM,
help_link='https://confluence.dimagi.com/display/USH/Split+Screen+Case+Search',
namespaces=[NAMESPACE_DOMAIN],
parent_toggles=[SPLIT_SCREEN_CASE_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"
Expand All @@ -1050,6 +1040,16 @@ def _ensure_valid_randomness(randomness):
parent_toggles=[SYNC_SEARCH_CASE_CLAIM]
)

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=[SPLIT_SCREEN_CASE_SEARCH]
)

USH_USERCASES_FOR_WEB_USERS = StaticToggle(
'usercases_for_web_users',
"USH: Enable the creation of usercases for web users.",
Expand Down

0 comments on commit aa486e0

Please sign in to comment.