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.
|
||||
parameters:
|
||||
- name: title
|
||||
in: path
|
||||
in: query
|
||||
description: Only list article with this specific title
|
||||
required: false
|
||||
schema:
|
||||
type: string
|
||||
- name: subtitle
|
||||
in: path
|
||||
in: query
|
||||
description: Only list article with this specific subtitle
|
||||
required: false
|
||||
schema:
|
||||
type: string
|
||||
- name: content
|
||||
in: path
|
||||
in: query
|
||||
description: Only list article with this specific content (in HTML)
|
||||
required: false
|
||||
schema:
|
||||
|
|
Loading…
Reference in a new issue