2013-07-11 10:11:41 +00:00
|
|
|
function clearArticleAccessKeys() {
|
2018-11-30 10:05:59 +00:00
|
|
|
if (confirm(__("This will invalidate all previously shared article URLs. Continue?"))) {
|
2013-07-11 10:11:41 +00:00
|
|
|
notify_progress("Clearing URLs...");
|
|
|
|
|
2018-11-30 12:23:48 +00:00
|
|
|
const query = { op: "pluginhandler", plugin: "share", method: "clearArticleKeys" };
|
2013-07-11 10:11:41 +00:00
|
|
|
|
2018-11-30 12:23:48 +00:00
|
|
|
xhrPost("backend.php", query, () => {
|
|
|
|
notify_info("Shared URLs cleared.");
|
|
|
|
});
|
2013-07-11 10:11:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|