mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	This commit will introduce a new setting used to disbaled simple password based authention. The setting itself is an enterprise setting.
		
			
				
	
	
		
			33 lines
		
	
	
		
			915 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			915 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { IUnleashConfig } from '../types/option';
 | |
| import { IUnleashStores } from '../types/stores';
 | |
| import { Logger } from '../logger';
 | |
| import { ISettingStore } from '../types/stores/settings-store';
 | |
| 
 | |
| export default class SettingService {
 | |
|     private logger: Logger;
 | |
| 
 | |
|     private settingStore: ISettingStore;
 | |
| 
 | |
|     constructor(
 | |
|         { settingStore }: Pick<IUnleashStores, 'settingStore'>,
 | |
|         { getLogger }: Pick<IUnleashConfig, 'getLogger'>,
 | |
|     ) {
 | |
|         this.logger = getLogger('services/setting-service.ts');
 | |
|         this.settingStore = settingStore;
 | |
|     }
 | |
| 
 | |
|     async get<T>(id: string): Promise<T> {
 | |
|         return this.settingStore.get(id);
 | |
|     }
 | |
| 
 | |
|     async insert(id: string, value: object): Promise<void> {
 | |
|         return this.settingStore.insert(id, value);
 | |
|     }
 | |
| 
 | |
|     async delete(id: string): Promise<void> {
 | |
|         return this.settingStore.delete(id);
 | |
|     }
 | |
| }
 | |
| 
 | |
| module.exports = SettingService;
 |