diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-28 22:04:45 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-28 22:04:45 -0800 |
commit | d50f7729cbc86c62dba9bd4db80786f07b44a7c0 (patch) | |
tree | 992677218f37dbd58fbf3ac7bb6035e3a57a1104 /rust/src/lib.rs | |
parent | f9408344464285870409c2209a8edc8d25fd9bfa (diff) | |
download | fatcat-d50f7729cbc86c62dba9bd4db80786f07b44a7c0.tar.gz fatcat-d50f7729cbc86c62dba9bd4db80786f07b44a7c0.zip |
more auth refactoring
Diffstat (limited to 'rust/src/lib.rs')
-rw-r--r-- | rust/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/lib.rs b/rust/src/lib.rs index 43911868..983645d8 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs @@ -117,7 +117,7 @@ pub fn server() -> Result<api_server::Server> { let pool = diesel::r2d2::Pool::builder() .build(manager) .expect("Failed to create database pool."); - let confectionary = auth::AuthConfectionary::new(); + let confectionary = auth::AuthConfectionary::new_dummy(); Ok(api_server::Server { db_pool: pool, auth_confectionary: confectionary }) } |