vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit 9323c57f498815e088448bf82414d411700d636e
parent 85e3c73525d327042c1ad142e48c044a5dbdd89c
Author: Daniel GarcĂ­a <dani-garcia@users.noreply.github.com>
Date:   Sun,  7 Feb 2021 00:22:39 +0100

Remove debug print

Diffstat:
Msrc/api/core/organizations.rs | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/src/api/core/organizations.rs b/src/api/core/organizations.rs @@ -1105,7 +1105,6 @@ struct OrgImportData { #[post("/organizations/<org_id>/import", data = "<data>")] fn import(org_id: String, data: JsonUpcase<OrgImportData>, headers: Headers, conn: DbConn) -> EmptyResult { let data = data.into_inner().data; - println!("{:#?}", data); // TODO: Currently we aren't storing the externalId's anywhere, so we also don't have a way // to differentiate between auto-imported users and manually added ones.