mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
0d3b8823e4
adding thumbnail loader for faces
25 lines
869 B
TypeScript
25 lines
869 B
TypeScript
import {Injectable} from '@angular/core';
|
|
import {NetworkService} from '../../../model/network/network.service';
|
|
import {ClientConfig} from '../../../../../common/config/public/ConfigClass';
|
|
import {SettingsService} from '../settings.service';
|
|
import {AbstractSettingsService} from '../_abstract/abstract.settings.service';
|
|
|
|
@Injectable()
|
|
export class MetaFileSettingsService extends AbstractSettingsService<ClientConfig.MetaFileConfig> {
|
|
constructor(private _networkService: NetworkService,
|
|
_settingsService: SettingsService) {
|
|
super(_settingsService);
|
|
|
|
}
|
|
|
|
public isSupported(): boolean {
|
|
return this._settingsService.settings.value.Client.Map.enabled === true;
|
|
}
|
|
|
|
|
|
public updateSettings(settings: ClientConfig.MetaFileConfig): Promise<void> {
|
|
return this._networkService.putJson('/settings/metafile', {settings: settings});
|
|
}
|
|
|
|
}
|