Fix param type: path -> query
This commit is contained in:
parent
6049d1f96e
commit
7f5bf7d277
1 changed files with 3 additions and 3 deletions
|
@ -33,19 +33,19 @@ paths:
|
||||||
List posts.
|
List posts.
|
||||||
parameters:
|
parameters:
|
||||||
- name: title
|
- name: title
|
||||||
in: path
|
in: query
|
||||||
description: Only list article with this specific title
|
description: Only list article with this specific title
|
||||||
required: false
|
required: false
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
- name: subtitle
|
- name: subtitle
|
||||||
in: path
|
in: query
|
||||||
description: Only list article with this specific subtitle
|
description: Only list article with this specific subtitle
|
||||||
required: false
|
required: false
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
- name: content
|
- name: content
|
||||||
in: path
|
in: query
|
||||||
description: Only list article with this specific content (in HTML)
|
description: Only list article with this specific content (in HTML)
|
||||||
required: false
|
required: false
|
||||||
schema:
|
schema:
|
||||||
|
|
Loading…
Reference in a new issue