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 9d7e237..0106030 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: If read operations alone cover your needs, you can choose to limit JSON:API to only reads to harden the security of your: adding, changing or removing of entities (content items, taxonomy terms, …) via JSON:API is then impossible. Learn more about securing your site with JSON:API.', [':docs' => 'https://www.drupal.org/docs/8/modules/jsonapi/security-considerations']), + '#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']), ]; return parent::buildForm($form, $form_state);