mirror of
				https://git.tt-rss.org/fox/tt-rss.git
				synced 2025-11-03 21:31:04 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			424 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			424 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
function clearArticleAccessKeys() {
 | 
						|
 | 
						|
	var ok = confirm(__("This will invalidate all previously shared article URLs. Continue?"));
 | 
						|
 | 
						|
	if (ok) {
 | 
						|
		notify_progress("Clearing URLs...");
 | 
						|
 | 
						|
		var query = "?op=pluginhandler&plugin=share&method=clearArticleKeys";
 | 
						|
 | 
						|
		new Ajax.Request("backend.php", {
 | 
						|
			parameters: query,
 | 
						|
			onComplete: function(transport) {
 | 
						|
				notify_info("Shared URLs cleared.");
 | 
						|
			} });
 | 
						|
	}
 | 
						|
 | 
						|
	return false;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
 |