mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 18:48:08 +00:00 
			
		
		
		
	 2fab20e082
			
		
	
	2fab20e082
	
	
	
		
			
			* Remove upgrade-link component * Hide enterprrise links from OSS * Don't show sidebar if they can't use the options
		
			
				
	
	
		
			14 lines
		
	
	
		
			412 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			412 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import Component from '@ember/component';
 | |
| import { computed } from '@ember/object';
 | |
| import layout from '../templates/components/upgrade-page';
 | |
| 
 | |
| export default Component.extend({
 | |
|   layout,
 | |
|   title: 'Vault Enterprise',
 | |
|   featureName: computed('title', function() {
 | |
|     let title = this.get('title');
 | |
|     return title === 'Vault Enterprise' ? 'this feature' : title;
 | |
|   }),
 | |
|   minimumEdition: 'Vault Enterprise',
 | |
| });
 |