mirror of
				https://git.proxmox.com/git/proxmox-backup
				synced 2025-11-02 15:18:42 +00:00 
			
		
		
		
	else we'll never see the 99+ tasks .. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			469 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			469 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
Ext.define('PBS.data.RunningTasksStore', {
 | 
						|
    extend: 'Proxmox.data.UpdateStore',
 | 
						|
 | 
						|
    singleton: true,
 | 
						|
 | 
						|
    constructor: function(config) {
 | 
						|
	let me = this;
 | 
						|
	config = config || {};
 | 
						|
	Ext.apply(config, {
 | 
						|
	    interval: 3000,
 | 
						|
	    storeid: 'pbs-running-tasks-dash',
 | 
						|
	    model: 'proxmox-tasks',
 | 
						|
	    proxy: {
 | 
						|
		type: 'proxmox',
 | 
						|
		// maybe separate api call?
 | 
						|
		url: '/api2/json/nodes/localhost/tasks?running=1&limit=100',
 | 
						|
	    },
 | 
						|
	});
 | 
						|
	me.callParent([config]);
 | 
						|
    },
 | 
						|
});
 |