From 89016d99a20269c1a576bd4c7673f83af55e8218 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 17 Nov 2020 15:46:20 -0800 Subject: codegen rust crate for v0.3.3 --- rust/fatcat-openapi/src/server.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'rust/fatcat-openapi/src/server.rs') 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::().ok()); let param_ark = query_params.get("ark").and_then(|list| list.first()).and_then(|x| x.parse::().ok()); let param_mag = query_params.get("mag").and_then(|list| list.first()).and_then(|x| x.parse::().ok()); + let param_doaj = query_params.get("doaj").and_then(|list| list.first()).and_then(|x| x.parse::().ok()); + let param_dblp = query_params.get("dblp").and_then(|list| list.first()).and_then(|x| x.parse::().ok()); let param_expand = query_params.get("expand").and_then(|list| list.first()).and_then(|x| x.parse::().ok()); let param_hide = query_params.get("hide").and_then(|list| list.first()).and_then(|x| x.parse::().ok()); @@ -8302,6 +8304,8 @@ where param_jstor, param_ark, param_mag, + param_doaj, + param_dblp, param_expand, param_hide, context, -- cgit v1.2.3