improve vault manager, refactor vault operations into shared service.

This commit is contained in:
Nystik
2026-03-18 18:52:38 +01:00
parent 408eb7fb54
commit e1d484fd28
5 changed files with 159 additions and 68 deletions

11
ui/bootstrap.js vendored Normal file
View File

@@ -0,0 +1,11 @@
import { vaultService } from "../services/vault-service.js";
export function showVaultManager() {
if (!document.querySelector(".workspace")) return;
if (document.querySelector(".vault-manager-overlay")) return;
new window.IgnisUI.VaultManager({
target: document.body,
props: { vaultService },
});
}