mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
4fb1bcb524
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;
|