src/Form/JsonApiSettingsForm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Form/JsonApiSettingsForm.php b/src/Form/JsonApiSettingsForm.php index 0106030..fbb2c4e 100644 --- a/src/Form/JsonApiSettingsForm.php +++ b/src/Form/JsonApiSettingsForm.php @@ -40,7 +40,7 @@ class JsonApiSettingsForm extends ConfigFormBase { 'rw' => $this->t('Accept all JSON:API create, read, update, and delete operations.'), ], '#default_value' => $jsonapi_config->get('read_only') === TRUE ? 'r' : 'rw', - '#description' => $this->t('Warning: When you do not need the ability to create, update or delete entities (content items, taxonomy terms, …), limiting JSON:API to only read operations is recommended. Learn more about securing your site with JSON:API.', [':docs' => 'https://www.drupal.org/docs/8/modules/jsonapi/security-considerations']), + '#description' => $this->t('Warning: Only enable all operations if the site requires it. Learn more about securing your site with JSON:API.', [':docs' => 'https://www.drupal.org/docs/8/modules/jsonapi/security-considerations']), ]; return parent::buildForm($form, $form_state);