summaryrefslogtreecommitdiffstats
path: root/rust/fatcat-openapi/src/server.rs
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2020-11-19 12:19:38 -0800
committerBryan Newbold <bnewbold@robocracy.org>2020-11-19 14:55:15 -0800
commit40b5d40bed9e20e5c7a40d1741601a8317e078d8 (patch)
tree67c46917c2d2be2dc4d30543656a39ca5a3c014e /rust/fatcat-openapi/src/server.rs
parentba4a85cf2ee51d775137541944e2e9d24b2e1bc9 (diff)
downloadfatcat-40b5d40bed9e20e5c7a40d1741601a8317e078d8.tar.gz
fatcat-40b5d40bed9e20e5c7a40d1741601a8317e078d8.zip
codegen rust schema crate
Diffstat (limited to 'rust/fatcat-openapi/src/server.rs')
-rw-r--r--rust/fatcat-openapi/src/server.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/rust/fatcat-openapi/src/server.rs b/rust/fatcat-openapi/src/server.rs
index 230aea45..59e83124 100644
--- a/rust/fatcat-openapi/src/server.rs
+++ b/rust/fatcat-openapi/src/server.rs
@@ -8289,6 +8289,7 @@ where
let param_mag = query_params.get("mag").and_then(|list| list.first()).and_then(|x| x.parse::<String>().ok());
let param_doaj = query_params.get("doaj").and_then(|list| list.first()).and_then(|x| x.parse::<String>().ok());
let param_dblp = query_params.get("dblp").and_then(|list| list.first()).and_then(|x| x.parse::<String>().ok());
+ let param_oai = query_params.get("oai").and_then(|list| list.first()).and_then(|x| x.parse::<String>().ok());
let param_expand = query_params.get("expand").and_then(|list| list.first()).and_then(|x| x.parse::<String>().ok());
let param_hide = query_params.get("hide").and_then(|list| list.first()).and_then(|x| x.parse::<String>().ok());
@@ -8306,6 +8307,7 @@ where
param_mag,
param_doaj,
param_dblp,
+ param_oai,
param_expand,
param_hide,
context,