4,163
edits
No edit summary |
No edit summary |
||
Line 1,239: | Line 1,239: | ||
mw.loader.using('mediawiki.api', function () { | mw.loader.using('mediawiki.api', function () { | ||
new mw.Api().post({ | console.log("🧪 Purge script loaded"); | ||
if (mw.config.get('wgCanonicalSpecialPageName') === 'FormEdit') { | |||
}); | console.log("🧪 On FormEdit page, attempting to purge Main..."); | ||
new mw.Api().post({ | |||
action: 'purge', | |||
titles: 'Main' | |||
}).done(function () { | |||
console.log("✅ Successfully purged Main"); | |||
}).fail(function (err) { | |||
console.error("❌ Failed to purge Main:", err); | |||
}); | |||
} else { | |||
console.log("ℹ️ Not on FormEdit page — skipping purge"); | |||
} | |||
}); | }); | ||
}); | }); |