You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
363 B
JavaScript
17 lines
363 B
JavaScript
function clearArticleAccessKeys() {
|
|
if (confirm(__("This will invalidate all previously shared article URLs. Continue?"))) {
|
|
notify_progress("Clearing URLs...");
|
|
|
|
const query = { op: "pluginhandler", plugin: "share", method: "clearArticleKeys" };
|
|
|
|
xhrPost("backend.php", query, () => {
|
|
notify_info("Shared URLs cleared.");
|
|
});
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
|
|
|