MCPcopy Create free account
hub / github.com/Tron521/codex-console-temp / loadRepairRollbacks

Function loadRepairRollbacks

static/js/selfcheck.js:388–400  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

386}
387
388async function loadRepairRollbacks() {
389 try {
390 const data = await api.get('/selfcheck/repair-center/rollbacks?limit=20', {
391 requestKey: 'selfcheck-repair-rollbacks',
392 cancelPrevious: true,
393 silentNetworkError: true,
394 priority: 'low',
395 });
396 renderRepairRollbacks(data?.items || []);
397 } catch (error) {
398 renderRepairRollbacks([]);
399 }
400}
401
402async function previewRepairCenter() {
403 const btn = document.getElementById('repair-center-preview-btn');

Callers 3

executeRepairCenterFunction · 0.85
rollbackRepairPointFunction · 0.85
initSelfcheckPageFunction · 0.85

Calls 2

renderRepairRollbacksFunction · 0.85
getMethod · 0.45

Tested by

no test coverage detected