1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/src/lib/services/setting-service.ts
Ivar Conradi Østhus 4fb1bcb524
feat: Disable password based login (#1046)
This commit will introduce a new setting used to disbaled
simple password based authention.

The setting itself is an enterprise setting.
2021-10-29 10:25:42 +02:00

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;