fmt: format runtime auth changes

This commit is contained in:
2026-07-27 01:43:17 +09:00
parent 55204478c6
commit 3cb056c523
5 changed files with 195 additions and 57 deletions
+4 -1
View File
@@ -541,7 +541,10 @@ impl SqliteWorkspaceStore {
})
}
pub fn list_trusted_runtimes(&self, include_revoked: bool) -> Result<Vec<TrustedRuntimeRecord>> {
pub fn list_trusted_runtimes(
&self,
include_revoked: bool,
) -> Result<Vec<TrustedRuntimeRecord>> {
self.with_conn(|conn| {
let sql = if include_revoked {
r#"SELECT runtime_id, display_name, base_url, public_key, created_at, updated_at, revoked_at