diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-09 00:05:49 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-09 00:05:49 -0700 |
commit | 4bb302f16ed01643864a14a183c663a201943ff3 (patch) | |
tree | aa7563579e62f87bb9fa6b35717bbe88d945ff90 /rust/src/endpoints.rs | |
parent | bf63870c88b5a62a2aad08929465b37d8be474dc (diff) | |
download | fatcat-4bb302f16ed01643864a14a183c663a201943ff3.tar.gz fatcat-4bb302f16ed01643864a14a183c663a201943ff3.zip |
initial API schema rust impl
Diffstat (limited to 'rust/src/endpoints.rs')
-rw-r--r-- | rust/src/endpoints.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rust/src/endpoints.rs b/rust/src/endpoints.rs index 4271848a..d13a760e 100644 --- a/rust/src/endpoints.rs +++ b/rust/src/endpoints.rs @@ -673,6 +673,8 @@ impl Api for Server { core_id: Option<String>, arxiv_id: Option<String>, jstor_id: Option<String>, + ark_id: Option<String>, + mag_id: Option<String>, expand: Option<String>, hide: Option<String>, _context: &Context, @@ -698,6 +700,8 @@ impl Api for Server { &core_id, &arxiv_id, &jstor_id, + &ark_id, + &mag_id, expand_flags, hide_flags, ) |