Delete folder mappings when deleting folders and make sure that we can't change a ciphers owner when created

This commit is contained in:
Daniel García
2018-05-04 19:02:19 +02:00
parent 85bc5514f8
commit 92236394e6
4 changed files with 39 additions and 35 deletions

View File

@@ -123,4 +123,10 @@ impl FolderCipher {
.filter(folders_ciphers::cipher_uuid.eq(cipher_uuid))
.first::<Self>(&**conn).ok()
}
pub fn find_by_folder(folder_uuid: &str, conn: &DbConn) -> Vec<Self> {
folders_ciphers::table
.filter(folders_ciphers::folder_uuid.eq(folder_uuid))
.load::<Self>(&**conn).expect("Error loading folders")
}
}