Unverified Commit 85ccd291 authored by Lee Rowlands's avatar Lee Rowlands
Browse files

Issue #3049857 by Spokje, dhirendra.mishra, bbrala, catch, Gábor Hojtsy:...

Issue #3049857 by Spokje, dhirendra.mishra, bbrala, catch, Gábor Hojtsy: Remove HAL module from core and create a contrib project for it
parent 2b9bbb66
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -448,7 +448,7 @@
            "dist": {
                "type": "path",
                "url": "core",
                "reference": "5fd45458c0f8e0fb2339bcf1d4359d4407da26c3"
                "reference": "343695dbe33c07aac9c5ce04ccb28017354276b5"
            },
            "require": {
                "asm89/stack-cors": "^2.0.2",
@@ -553,7 +553,6 @@
                "drupal/file": "self.version",
                "drupal/filter": "self.version",
                "drupal/forum": "self.version",
                "drupal/hal": "self.version",
                "drupal/help": "self.version",
                "drupal/help_topics": "self.version",
                "drupal/history": "self.version",
+0 −3
Original line number Diff line number Diff line
@@ -236,9 +236,6 @@ Form API
History
- Andrey Postnikov 'andypost' https://www.drupal.org/u/andypost

Hypertext Application Language (HAL)
- ?

Help
- ?

+0 −1
Original line number Diff line number Diff line
@@ -106,7 +106,6 @@
        "drupal/file": "self.version",
        "drupal/filter": "self.version",
        "drupal/forum": "self.version",
        "drupal/hal": "self.version",
        "drupal/help": "self.version",
        "drupal/help_topics": "self.version",
        "drupal/history": "self.version",
+6 −7
Original line number Diff line number Diff line
@@ -110,15 +110,14 @@
 * @section sec_rest Enabling REST for entities and the log
 * Here are the steps to take to use the REST operations provided by Drupal
 * Core:
 * - Enable the REST module, plus Basic Auth (or another authentication method)
 *   and HAL.
 * - Enable the REST module, plus Basic Auth or another authentication method.
 * - Node entity support is configured by default. If you would like to support
 *   other types of entities, you can copy
 *   core/modules/hal/config/optional/rest.resource.entity.node.yml to your sync
 *   configuration directory, appropriately modified for other entity types,
 *   and import it. Support for GET on the log from the Database Logging module
 *   can also be enabled in this way; in this case, the 'entity:node' line
 *   in the configuration would be replaced by the appropriate plugin ID,
 *   core/modules/rest/config/optional/rest.resource.entity.node.yml to your
 *   sync configuration directory, appropriately modified for other entity
 *   types, and import it. Support for GET on the log from the Database Logging
 *   module can also be enabled in this way; in this case, the 'entity:node'
 *   line in the configuration would be replaced by the appropriate plugin ID,
 *   'dblog'.
 * - Set up permissions to allow the desired REST operations for a role, and set
 *   up one or more user accounts to perform the operations.
+0 −3
Original line number Diff line number Diff line
# Set the domain for HAL type and relation links.
# If left blank, the site's domain will be used.
link_domain: ~
Loading