From e4cbb96cf48dbef03efc87c880c38e82c7107c3e Mon Sep 17 00:00:00 2001 From: pancho horrillo Date: Mon, 27 May 2019 11:40:40 +0200 Subject: [PATCH] spec: add missing /response/cookies handler MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Roberto Abdelkader Martínez Pérez --- spec/README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/spec/README.md b/spec/README.md index a7c6b5c..f9d18d4 100644 --- a/spec/README.md +++ b/spec/README.md @@ -340,7 +340,7 @@ following resource paths: │ │ └──── │ ├──── cookies HTTP request cookie │ │ └──── -│ ├──── form form-urlencoded form fields +│ ├──── form Form-urlencoded form fields │ │ └──── │ ├──── files Files uploaded via multi-part form fields │ │ └──── @@ -350,10 +350,12 @@ following resource paths: │ └─ response All information related to the HTTP request. Write-Only ├──── status HTTP status code + ├──── headers HTTP response headers + │ └──── + ├──── cookies HTTP request cookie + │ └──── ├──── body Response body. Mutually exclusive with response/stream - ├──── stream Chunk-encoded body. Streamed response. Mutually exclusive with response/body - └──── headers HTTP response headers - └──── + └──── stream Chunk-encoded body. Streamed response. Mutually exclusive with response/body ```