diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-11-17 15:48:33 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-11-19 14:55:14 -0800 |
commit | 0fb0c3759a04c025800e3175fb4cbd8d595f8c4b (patch) | |
tree | 974a522ed63edb715fd0090a9bad1f3f03cfaf0a /rust/src/endpoints.rs | |
parent | 89016d99a20269c1a576bd4c7673f83af55e8218 (diff) | |
download | fatcat-0fb0c3759a04c025800e3175fb4cbd8d595f8c4b.tar.gz fatcat-0fb0c3759a04c025800e3175fb4cbd8d595f8c4b.zip |
rust: fatcatd changes for DOAJ+dblp identifiers
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 0dd69efd..fda4688c 100644 --- a/rust/src/endpoints.rs +++ b/rust/src/endpoints.rs @@ -689,6 +689,8 @@ impl Api for Server { jstor: Option<String>, ark: Option<String>, mag: Option<String>, + doaj: Option<String>, + dblp: Option<String>, expand: Option<String>, hide: Option<String>, _context: &Context, @@ -716,6 +718,8 @@ impl Api for Server { &jstor, &ark, &mag, + &doaj, + &dblp, expand_flags, hide_flags, ) |