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