mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			426 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			426 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import Component from '@ember/component';
 | 
						|
import { computed } from '@ember/object';
 | 
						|
 | 
						|
export default Component.extend({
 | 
						|
  cluster: null,
 | 
						|
  replicationMode: null,
 | 
						|
  secondaries: null,
 | 
						|
  onRevoke: Function.prototype,
 | 
						|
 | 
						|
  addRoute: computed('replicationMode', function() {}),
 | 
						|
  revokeRoute: computed('replicationMode', function() {}),
 | 
						|
 | 
						|
  actions: {
 | 
						|
    onConfirmRevoke() {
 | 
						|
      this.get('onRevoke')(...arguments);
 | 
						|
    },
 | 
						|
  },
 | 
						|
});
 |