Skip to content
Snippets Groups Projects
Commit e31a0430 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2869904 by tstoeckler: Config schema missing for less common HTTP...

Issue #2869904 by tstoeckler: Config schema missing for less common HTTP methods in REST resources configured using 'method' granularity
parent 992ed45b
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -15,18 +15,33 @@ rest.settings:
rest_resource.method:
type: mapping
mapping:
HEAD:
type: rest_request
label: 'HEAD method settings'
GET:
type: rest_request
label: 'GET method settings'
POST:
type: rest_request
label: 'POST method settings'
PATCH:
PUT:
type: rest_request
label: 'PATCH method settings'
label: 'PUT method settings'
DELETE:
type: rest_request
label: 'DELETE method settings'
TRACE:
type: rest_request
label: 'TRACE method settings'
OPTIONS:
type: rest_request
label: 'OPTIONS method settings'
CONNECT:
type: rest_request
label: 'CONNECT method settings'
PATCH:
type: rest_request
label: 'PATCH method settings'
# Resource-level granularity of REST resource configuration.
rest_resource.resource:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment