1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/openapi.js b/scripts/openapi.js
index e6c52a17..ca3e7b21 100644
--- a/scripts/openapi.js
+++ b/scripts/openapi.js
@@ -134,7 +134,8 @@ function apiRoutes(missingRoutes) {
if (
!NO_AUTHORIZATION_ROUTES.some((x) => {
- if (typeof x === "string") return (method.toUpperCase() + " " + path).startsWith(x);
+ if (typeof x === "string")
+ return (method.toUpperCase() + " " + path).startsWith(x);
return x.test(method.toUpperCase() + " " + path);
})
) {
|