aboutsummaryrefslogtreecommitdiffstats
path: root/rust/fatcat-openapi/src/server.rs
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2020-11-17 15:46:20 -0800
committerBryan Newbold <bnewbold@robocracy.org>2020-11-19 14:55:14 -0800
commit89016d99a20269c1a576bd4c7673f83af55e8218 (patch)
treed57902f19bfb546ae941c566e2be0ab7aa9796fd /rust/fatcat-openapi/src/server.rs
parentb4d675b3a4a085d6338d8df5196f4a37dd7c39bc (diff)
downloadfatcat-89016d99a20269c1a576bd4c7673f83af55e8218.tar.gz
fatcat-89016d99a20269c1a576bd4c7673f83af55e8218.zip
codegen rust crate for v0.3.3
Diffstat (limited to 'rust/fatcat-openapi/src/server.rs')
-rw-r--r--rust/fatcat-openapi/src/server.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/rust/fatcat-openapi/src/server.rs b/rust/fatcat-openapi/src/server.rs
index 539d5d5b..230aea45 100644
--- a/rust/fatcat-openapi/src/server.rs
+++ b/rust/fatcat-openapi/src/server.rs
@@ -8287,6 +8287,8 @@ where
let param_jstor = query_params.get("jstor").and_then(|list| list.first()).and_then(|x| x.parse::<String>().ok());
let param_ark = query_params.get("ark").and_then(|list| list.first()).and_then(|x| x.parse::<String>().ok());
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_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());
@@ -8302,6 +8304,8 @@ where
param_jstor,
param_ark,
param_mag,
+ param_doaj,
+ param_dblp,
param_expand,
param_hide,
context,