tuwunel_admin/query/users/
password_hash.rs1use ruma::OwnedUserId;
2use tuwunel_core::Result;
3
4use crate::admin_command;
5
6#[admin_command]
7pub(super) async fn password_hash(&self, user_id: OwnedUserId) -> Result {
8 self.write_timed_query(self.services.users.password_hash(&user_id))
9 .await
10}