Add cached TOTP search (#77)

This commit is contained in:
2026-08-12 20:36:03 +02:00
parent 1ce7b7814b
commit 87f9e7be98
7 changed files with 156 additions and 7 deletions

View File

@@ -1494,6 +1494,16 @@ impl MobileAuthentication {
.map_err(Into::into)
}
pub fn search_cached_totp_page(
&self,
query: String,
) -> Result<Option<MobileTotpPage>, MobileAuthenticationFfiError> {
self.authentication
.search_cached_totp_page(&query)
.map(|page| page.map(Into::into))
.map_err(Into::into)
}
pub fn totp_detail(
&self,
path: String,