1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-06-11 05:23:53 +00:00

Update dependencies and fix some warnings

This commit is contained in:
Daniel García 2019-04-11 15:32:38 +02:00
parent d89bd707a8
commit 621f607297
No known key found for this signature in database
GPG key ID: FC8A7D14C3CD543A
7 changed files with 98 additions and 49 deletions

View file

@ -113,8 +113,6 @@ use crate::error::MapResult;
/// Database methods
impl User {
pub fn to_json(&self, conn: &DbConn) -> Value {
use super::{TwoFactor, UserOrganization};
let orgs = UserOrganization::find_by_user(&self.uuid, conn);
let orgs_json: Vec<Value> = orgs.iter().map(|c| c.to_json(&conn)).collect();
let twofactor_enabled = !TwoFactor::find_by_user(&self.uuid, conn).is_empty();