Merge branch 'master' into admin-disable-user

This commit is contained in:
Daniel García
2020-12-08 15:42:37 +01:00
committed by GitHub
14 changed files with 263 additions and 261 deletions

View File

@@ -290,6 +290,13 @@ impl User {
users::table.load::<UserDb>(conn).expect("Error loading users").from_db()
}}
}
pub fn last_active(&self, conn: &DbConn) -> Option<NaiveDateTime> {
match Device::find_latest_active_by_user(&self.uuid, conn) {
Some(device) => Some(device.updated_at),
None => None
}
}
}
impl Invitation {