forked from mirror/Riven
1
0
Fork 0

Do not support methods with header parameters

v/1.x.x
Mingwei Samuel 2021-05-20 14:08:28 -07:00
parent 4f575530c7
commit 32082b0a62
2 changed files with 8 additions and 2 deletions

View File

@ -65,8 +65,11 @@ impl<'a> {{= endpoint }}<'a> {
for (let [ route, path ] of endpointMethods)
{
let get = path.get;
if (!get)
if (!get) /* Only support GET parameters. */
continue;
if ((get.parameters || []).some(p => 'header' === p.in)) /* Do not support header parameter methods. */
continue;
let operationId = get.operationId;
let method = dotUtils.changeCase.snakeCase(operationId.slice(operationId.indexOf('.') + 1));

View File

@ -20,8 +20,11 @@ lazy_static! {
{{
for (const [ route, path ] of Object.entries(spec.paths)) {
const get = path.get;
if (!get)
if (!get) /* Only support GET parameters. */
continue;
if ((get.parameters || []).some(p => 'header' === p.in)) /* Do not support header parameter methods. */
continue;
const operationId = get.operationId;
}}
map.insert("{{= route }}", "{{= operationId }}");