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 e5c9d19e2596af85d37222c93a9b6a812ad25b4e
parent 34f2aa68f431773d040124db0be9d4fb8eb03367
Author: Miroslav Prasil <miroslav@prasil.info>
Date:   Fri, 11 May 2018 11:32:50 +0100

Remove outdated comment

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

diff --git a/src/api/core/ciphers.rs b/src/api/core/ciphers.rs @@ -320,7 +320,6 @@ fn post_collections_admin(uuid: String, data: Json<CollectionsAdminData>, header let posted_collections: HashSet<String> = data.collectionIds.iter().cloned().collect(); let current_collections: HashSet<String> = cipher.get_collections(&conn).iter().cloned().collect(); - //TODO: update cipher collection mapping for collection in posted_collections.symmetric_difference(&current_collections) { match Collection::find_by_uuid(&collection, &conn) { None => (), // Does not exist, what now?