summary refs log tree commit diff
path: root/scripts/schema.js
diff options
context:
space:
mode:
authorPuyodead1 <puyodead@proton.me>2023-03-27 15:51:34 -0400
committerPuyodead1 <puyodead@proton.me>2023-04-13 15:44:39 -0400
commit866eb15d90f35cc789bfacea4b70b904471d8eae (patch)
treee63e01e5860c8190e2829a0919c76c5bd7b535df /scripts/schema.js
parentoapi: fix a few response types in auth (diff)
downloadserver-866eb15d90f35cc789bfacea4b70b904471d8eae.tar.xz
clusterfuck
Diffstat (limited to 'scripts/schema.js')
-rw-r--r--scripts/schema.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/scripts/schema.js b/scripts/schema.js

index ef43d80c..2a39962f 100644 --- a/scripts/schema.js +++ b/scripts/schema.js
@@ -79,11 +79,7 @@ function main() { let schemas = generator .getUserSymbols() - .filter( - (x) => - (x.endsWith("Schema") || x.endsWith("Response")) && - !Excluded.includes(x), - ); + .filter((x) => x.endsWith("Schema") && !Excluded.includes(x)); console.log(schemas); var definitions = {};