diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-28 14:52:38 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-28 15:45:10 -0800 |
commit | f9408344464285870409c2209a8edc8d25fd9bfa (patch) | |
tree | 386e2472c22e9c79f8a58e2f419c9fbaef00dd13 /rust/src/api_server.rs | |
parent | fa1892834a4650bf2e85215a3270e309d3e9f1c9 (diff) | |
download | fatcat-f9408344464285870409c2209a8edc8d25fd9bfa.tar.gz fatcat-f9408344464285870409c2209a8edc8d25fd9bfa.zip |
start refactor of auth code
Pulls auth code (which requires the persistent state of a signing
keyring) into a struct.
Doesn't try verify macaroon in middleware, do it in individual wrappers.
Diffstat (limited to 'rust/src/api_server.rs')
-rw-r--r-- | rust/src/api_server.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rust/src/api_server.rs b/rust/src/api_server.rs index af2a7e24..cbf5be21 100644 --- a/rust/src/api_server.rs +++ b/rust/src/api_server.rs @@ -2,6 +2,7 @@ use api_entity_crud::EntityCrud; use api_helpers::*; +use auth::*; use chrono; use database_models::*; use database_schema::*; @@ -41,6 +42,7 @@ macro_rules! entity_batch_handler { #[derive(Clone)] pub struct Server { pub db_pool: ConnectionPool, + pub auth_confectionary: AuthConfectionary, } pub fn get_release_files( |