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.
16 lines
377 B
JavaScript
16 lines
377 B
JavaScript
Plugins.Share = {
|
|
clearKeys: function() {
|
|
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;
|
|
}
|
|
};
|