use httpMethod if fixedmethod not is available

This commit is contained in:
srgooglo 2022-02-21 11:17:44 +01:00
parent 121a100683
commit ad39ab3b34

View File

@ -36,7 +36,7 @@ export default class ComplexController {
const fn = this[httpMethod][methodKey]
let endpoint = {
method: fixedMethod,
method: fixedMethod ?? httpMethod,
route: methodKey,
middlewares: [],
fn: fn,