Move into nested docroot
This commit is contained in:
parent
83a0d3a149
commit
c8b70abde9
13405 changed files with 0 additions and 0 deletions
11
web/core/modules/rest/config/install/rest.settings.yml
Normal file
11
web/core/modules/rest/config/install/rest.settings.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
# Set the domain for REST type and relation links.
|
||||
# If left blank, the site's domain will be used.
|
||||
link_domain: ~
|
||||
|
||||
# Before Drupal 8.2, EntityResource used permissions as well as the entity
|
||||
# access system for access checking. This was confusing, and it only did this
|
||||
# for historical reasons. New Drupal installations opt out from this by default
|
||||
# (hence this is set to false), existing installations opt in to it.
|
||||
# @see rest_update_8203()
|
||||
# @see https://www.drupal.org/node/2664780
|
||||
bc_entity_resource_permissions: false
|
|
@ -0,0 +1,20 @@
|
|||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- basic_auth
|
||||
- hal
|
||||
- node
|
||||
id: entity.node
|
||||
plugin_id: 'entity:node'
|
||||
granularity: resource
|
||||
configuration:
|
||||
methods:
|
||||
- GET
|
||||
- POST
|
||||
- PATCH
|
||||
- DELETE
|
||||
formats:
|
||||
- hal_json
|
||||
authentication:
|
||||
- basic_auth
|
84
web/core/modules/rest/config/schema/rest.schema.yml
Normal file
84
web/core/modules/rest/config/schema/rest.schema.yml
Normal file
|
@ -0,0 +1,84 @@
|
|||
# Schema for the configuration files of the REST module.
|
||||
rest.settings:
|
||||
type: config_object
|
||||
label: 'REST settings'
|
||||
mapping:
|
||||
link_domain:
|
||||
type: string
|
||||
label: 'Domain of the relation'
|
||||
bc_entity_resource_permissions:
|
||||
type: boolean
|
||||
label: 'Whether the pre Drupal 8.2.x behavior of having permissions for EntityResource is enabled or not.'
|
||||
|
||||
# Method-level granularity of REST resource configuration.
|
||||
rest_resource.method:
|
||||
type: mapping
|
||||
mapping:
|
||||
GET:
|
||||
type: rest_request
|
||||
label: 'GET method settings'
|
||||
POST:
|
||||
type: rest_request
|
||||
label: 'POST method settings'
|
||||
PATCH:
|
||||
type: rest_request
|
||||
label: 'PATCH method settings'
|
||||
DELETE:
|
||||
type: rest_request
|
||||
label: 'DELETE method settings'
|
||||
|
||||
# Resource-level granularity of REST resource configuration.
|
||||
rest_resource.resource:
|
||||
type: mapping
|
||||
mapping:
|
||||
methods:
|
||||
type: sequence
|
||||
label: 'Supported methods'
|
||||
sequence:
|
||||
type: string
|
||||
label: 'HTTP method'
|
||||
formats:
|
||||
type: sequence
|
||||
label: 'Supported formats'
|
||||
sequence:
|
||||
type: string
|
||||
label: 'Format'
|
||||
authentication:
|
||||
type: sequence
|
||||
label: 'Supported authentication providers'
|
||||
sequence:
|
||||
type: string
|
||||
label: 'Authentication provider'
|
||||
|
||||
rest_request:
|
||||
type: mapping
|
||||
mapping:
|
||||
supported_formats:
|
||||
type: sequence
|
||||
label: 'Supported format'
|
||||
sequence:
|
||||
type: string
|
||||
label: 'Format'
|
||||
supported_auth:
|
||||
type: sequence
|
||||
label: 'Supported authentication'
|
||||
sequence:
|
||||
type: string
|
||||
label: 'Authentication'
|
||||
|
||||
rest.resource.*:
|
||||
type: config_entity
|
||||
label: 'REST resource config'
|
||||
mapping:
|
||||
id:
|
||||
type: string
|
||||
label: 'REST resource config ID'
|
||||
plugin_id:
|
||||
type: string
|
||||
label: 'REST resource plugin id'
|
||||
granularity:
|
||||
type: string
|
||||
label: 'REST resource configuration granularity'
|
||||
configuration:
|
||||
type: rest_resource.[%parent.granularity]
|
||||
label: 'REST resource configuration'
|
41
web/core/modules/rest/config/schema/rest.views.schema.yml
Normal file
41
web/core/modules/rest/config/schema/rest.views.schema.yml
Normal file
|
@ -0,0 +1,41 @@
|
|||
# Schema for the views plugins of the REST module.
|
||||
|
||||
views.display.rest_export:
|
||||
type: views_display_path
|
||||
label: 'REST display options'
|
||||
mapping:
|
||||
auth:
|
||||
type: sequence
|
||||
label: 'Authentication'
|
||||
sequence:
|
||||
type: string
|
||||
label: 'Authentication Provider'
|
||||
|
||||
views.row.data_field:
|
||||
type: views_row
|
||||
label: 'Field row'
|
||||
mapping:
|
||||
field_options:
|
||||
type: sequence
|
||||
label: 'Options'
|
||||
sequence:
|
||||
type: mapping
|
||||
label: 'Row'
|
||||
mapping:
|
||||
alias:
|
||||
type: string
|
||||
label: 'Alias for ID'
|
||||
raw_output:
|
||||
type: boolean
|
||||
label: 'Raw output for ID'
|
||||
|
||||
views.style.serializer:
|
||||
type: views_style
|
||||
label: 'Serialized output format'
|
||||
mapping:
|
||||
formats:
|
||||
type: sequence
|
||||
label: 'Formats'
|
||||
sequence:
|
||||
type: string
|
||||
label: 'Format'
|
Reference in a new issue