1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-09-19 08:58:58 +02:00

Finalize count_local_users function

This commit is contained in:
Torsten Flammiger 2021-12-26 11:06:28 +01:00
parent d21030566c
commit 2281bcefc6

View file

@ -88,10 +88,8 @@ impl Users {
/// a password thus returning only real accounts on this instance. /// a password thus returning only real accounts on this instance.
#[tracing::instrument(skip(self))] #[tracing::instrument(skip(self))]
pub fn count_local_users(&self) -> Result<usize> { pub fn count_local_users(&self) -> Result<usize> {
self.userid_password.iter().map(|(key, value)| { let n = self.userid_password.iter().filter(|(_, bytes)| bytes.len() > 0).count();
Ok(n)
});
Ok(1)
} }
/// Find out which user an access token belongs to. /// Find out which user an access token belongs to.