Files
halo-theme-WarmIsland/check-theme2.js
T
2026-05-18 17:29:18 +08:00

15 lines
431 B
JavaScript

(function(){
return fetch('/apis/api.console.halo.run/v1alpha1/themes?sort=creationTimestamp%2Cdesc')
.then(r => r.json())
.then(data => {
var items = data.items || [];
var result = items.map(t => ({
name: t.metadata.name,
displayName: t.spec.displayName,
active: t.spec.activationTime,
allKeys: Object.keys(t.spec)
}));
return JSON.stringify(result);
});
})()