Commit be63472c authored by Paulo Henrique Cota Starling's avatar Paulo Henrique Cota Starling Committed by Jacob Rockowitz
Browse files

Issue #3247475 by jrockowitz, paulocs, joelseguin: [Drupal 9.x] Location field...

Issue #3247475 by jrockowitz, paulocs, joelseguin: [Drupal 9.x] Location field update required: Algolia Places sunsetting May 31, 2022
parent a193201b
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -191,8 +191,6 @@ element:
  default_empty_option: true
  default_empty_option_required: ''
  default_empty_option_optional: ''
  default_algolia_places_app_id: ''
  default_algolia_places_api_key: ''
  excluded_elements:
    password: password
    password_confirm: password_confirm
+0 −6
Original line number Diff line number Diff line
@@ -368,12 +368,6 @@ webform.settings:
        default_empty_option_optional:
          type: label
          label: 'Default empty option optional label'
        default_algolia_places_app_id:
          type: string
          label: 'Default Algolia application id'
        default_algolia_places_api_key:
          type: string
          label: 'Default Algolia API key'
        excluded_elements:
          type: ignore
          label: 'Excluded types'
+10 −4
Original line number Diff line number Diff line
@@ -109,9 +109,10 @@ echo 'true' > modules/webform_jqueryui_datepicker/tests/modules/webform_jqueryui
echo 'true' > modules/webform_image_select/webform_image_select.features.yml
echo 'true' > modules/webform_image_select/tests/modules/webform_image_select_test/webform_image_select_test.features.yml

echo 'true' > modules/webform_location_geocomplete/webform_location_geocomplete.features.yml
echo 'true' > modules/webform_location_geocomplete/tests/modules/webform_location_geocomplete_test/webform_location_geocomplete_test.features.yml

echo 'true' > modules/webform_location_places/tests/modules/webform_location_places_test/webform_location_places_test.features.yml

echo 'true' > modules/webform_node/webform_node.features.yml
echo 'true' > modules/webform_node/tests/modules/webform_node_test_multiple/webform_node_test_multiple.features.yml
echo 'true' > modules/webform_node/tests/modules/webform_node_test_translation/webform_node_test_translation.features.yml
@@ -176,6 +177,7 @@ drush en -y webform\
  webform_group_test\
  webform_image_select\
  webform_location_geocomplete\
  webform_location_places\
  webform_node\
  webform_submission_export_import\
  webform_templates\
@@ -198,6 +200,7 @@ drush en -y webform\
  webform_jqueryui_datepicker_test\
  webform_image_select_test\
  webform_location_geocomplete_test\
  webform_location_places_test\
  webform_node_test_multiple\
  webform_node_test_translation\
  webform_options_custom\
@@ -231,7 +234,8 @@ drush features-export -y webform_example_variant
drush features-export -y webform_example_remote_post
drush features-export -y webform_group_test
drush features-export -y webform_image_select
drush features-export -y webform_location_geocomplete
drush features-export -y webform_location_geocomplete_test
drush features-export -y webform_location_places_test
drush features-export -y webform_node
drush features-export -y webform_submission_export_import
drush features-export -y webform_templates
@@ -288,7 +292,8 @@ drush webform:tidy -y --dependencies webform_group_test
drush webform:tidy -y --dependencies webform_icheck
drush webform:tidy -y --dependencies webform_jqueryui_datepicker
drush webform:tidy -y --dependencies webform_image_select
drush webform:tidy -y --dependencies webform_location_geocomplete
drush webform:tidy -y --dependencies webform_location_geocomplete_test
drush webform:tidy -y --dependencies webform_location_places_test
drush webform:tidy -y --dependencies webform_node
drush webform:tidy -y --dependencies webform_submission_export_import
drush webform:tidy -y --dependencies webform_templates
@@ -342,7 +347,8 @@ drush features-import -y webform_group_test
drush features-import -y webform_icheck
drush features-import -y webform_jqueryui_datepicker_test
drush features-import -y webform_image_select
drush features-import -y webform_location_geocomplete
drush features-import -y webform_location_geocomplete_test
drush features-import -y webform_location_places_test
drush features-import -y webform_node
drush features-import -y webform_submission_export_import
drush features-import -y webform_templates
+10 −0
Original line number Diff line number Diff line
webform.admin_settings.third_party.webform_location_places:
  type: mapping
  label: 'Location Algolia Places'
  mapping:
    default_algolia_places_app_id:
      type: string
      label: 'Default Algolia application id'
    default_algolia_places_api_key:
      type: string
      label: 'Default Algolia API key'
Loading