diff -u b/core/modules/rest/rest.module b/core/modules/rest/rest.module --- b/core/modules/rest/rest.module +++ b/core/modules/rest/rest.module @@ -37,7 +37,7 @@ $output .= '
' . t('Enabling supporting modules') . '
'; $output .= '
' . t('In order to use REST on a web site, you need to install and enable modules that provide serialization and authentication services. You can use the Core module HAL for serialization and HTTP Basic Authentication for authentication, or install a contributed or custom module.', array('!hal' => \Drupal::url('help.page', array('name' => 'hal')), '!basic_auth' => \Drupal::url('help.page', array('name' => 'basic_auth')))) . '
'; $output .= '
' . t('Enabling REST support for an entity type') . '
'; - $output .= '
' . t('REST support for content items of the Node module is enabled by default, and support for other types of content entities can be enabled. To enable support, you can use a process based on configuration editing or the contributed Rest UI module.', array('!config' => 'https://drupal.org/documentation/modules/rest', '!restui' => 'https://drupal.org/project/restui', '!basic_auth' => \Drupal::url('help.page', array('name' => 'basic_auth')))) . '
'; + $output .= '
' . t('REST support for content items of the Node module is enabled by default, and support for other types of content entities can be enabled. To enable support, you can use a process based on configuration editing or the contributed Rest UI module.', array('!config' => 'https://drupal.org/documentation/modules/rest', '!restui' => 'https://drupal.org/project/restui')) . '
'; $output .= '
' . t('You will also need to grant anonymous users permission to perform each of the REST operations you want to be available, and set up authentication properly to authorize web requests.') . '
'; $output .= ''; return $output;