mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			356 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			356 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import RoleEdit from './role-edit';
 | 
						|
 | 
						|
export default RoleEdit.extend({
 | 
						|
  init() {
 | 
						|
    this._super(...arguments);
 | 
						|
    this.set('backendType', 'ssh');
 | 
						|
  },
 | 
						|
 | 
						|
  actions: {
 | 
						|
    updateTtl(path, val) {
 | 
						|
      const model = this.model;
 | 
						|
      const valueToSet = val.enabled === true ? `${val.seconds}s` : undefined;
 | 
						|
      model.set(path, valueToSet);
 | 
						|
    },
 | 
						|
  },
 | 
						|
});
 |