Fix param type: path -> query

This commit is contained in:
Kitaiti Makoto 2021-02-13 23:04:34 +09:00
parent 6049d1f96e
commit 7f5bf7d277

View file

@ -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: