1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/settings/database/database.settings.service.ts

19 lines
647 B
TypeScript
Raw Normal View History

2017-07-08 18:43:42 +08:00
import {Injectable} from "@angular/core";
import {NetworkService} from "../../model/network/network.service";
import {DataBaseConfig, IPrivateConfig} from "../../../../common/config/private/IPrivateConfig";
@Injectable()
export class DatabaseSettingsService {
2017-07-14 05:39:09 +08:00
constructor(private _networkService: NetworkService) {
2017-07-08 18:43:42 +08:00
}
public async getSettings(): Promise<DataBaseConfig> {
return (await <Promise<IPrivateConfig>>this._networkService.getJson("/settings")).Server.database;
}
2017-07-14 05:39:09 +08:00
public updateSettings(settings: DataBaseConfig): Promise<void> {
return this._networkService.putJson("/settings/database", {settings: settings});
2017-07-08 18:43:42 +08:00
}
}