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 ac2ca5812ba0385f3e09351c9a3b9773a0285665
parent e2b4f3b13f2be9ccbde0c1915a213a319eb5c13f
Author: Miroslav Prasil <miroslav@prasil.info>
Date:   Fri,  1 Jun 2018 13:24:45 +0100

Remove unused UserOrganization

Diffstat:
Msrc/db/models/cipher.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/db/models/cipher.rs b/src/db/models/cipher.rs @@ -3,7 +3,7 @@ use serde_json::Value as JsonValue; use uuid::Uuid; -use super::{User, Organization, UserOrganization, Attachment, FolderCipher, CollectionCipher, UserOrgType}; +use super::{User, Organization, Attachment, FolderCipher, CollectionCipher, UserOrgType}; #[derive(Debug, Identifiable, Queryable, Insertable, Associations)] #[table_name = "ciphers"]