aboutsummaryrefslogtreecommitdiff
path: root/src/api/core/mod.rs
diff options
context:
space:
mode:
authorBlackDex <[email protected]>2023-06-02 22:28:30 +0200
committerBlackDex <[email protected]>2023-06-13 08:51:07 +0200
commit8e34495e73f280e1c62f0f1b63e0219225f001d7 (patch)
tree4e75f19e03a87cebf54bad3b24e69b6e79d20ea0 /src/api/core/mod.rs
parent4219249e11845bb8869c26e1182fa1d38b1a162a (diff)
downloadvaultwarden-8e34495e73f280e1c62f0f1b63e0219225f001d7.tar.gz
vaultwarden-8e34495e73f280e1c62f0f1b63e0219225f001d7.zip
Merge and modify PR from @Kurnihil
Merging a PR from @Kurnihil into the already rebased branch. Made some small changes to make it work with newer changes. Some finetuning is probably still needed. Co-authored-by: Daniele Andrei <[email protected]> Co-authored-by: Kurnihil
Diffstat (limited to 'src/api/core/mod.rs')
-rw-r--r--src/api/core/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/api/core/mod.rs b/src/api/core/mod.rs
index 00cfcf85..f7e912cf 100644
--- a/src/api/core/mod.rs
+++ b/src/api/core/mod.rs
@@ -4,6 +4,7 @@ mod emergency_access;
mod events;
mod folders;
mod organizations;
+mod public;
mod sends;
pub mod two_factor;
@@ -27,6 +28,7 @@ pub fn routes() -> Vec<Route> {
routes.append(&mut organizations::routes());
routes.append(&mut two_factor::routes());
routes.append(&mut sends::routes());
+ routes.append(&mut public::routes());
routes.append(&mut eq_domains_routes);
routes.append(&mut hibp_routes);
routes.append(&mut meta_routes);