mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 02:28:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			404 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			404 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import Ember from 'ember';
 | |
| 
 | |
| const { computed } = Ember;
 | |
| 
 | |
| export default Ember.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);
 | |
|     },
 | |
|   },
 | |
| });
 | 
