aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+admin/config/shared/config.service.ts
blob: 13f1f6cd2b76c1089c13ea237c9efd095df5bbf7 (plain) (tree)

























                                                                                                
import { HttpClient } from '@angular/common/http'
import { Injectable } from '@angular/core'
import { CustomConfig } from '../../../../../../shared/models/config/custom-config.model'
import { environment } from '../../../../environments/environment'
import { RestExtractor, RestService } from '../../../shared'

@Injectable()
export class ConfigService {
  private static BASE_APPLICATION_URL = environment.apiUrl + '/api/v1/config'

  constructor (
    private authHttp: HttpClient,
    private restService: RestService,
    private restExtractor: RestExtractor
  ) {}

  getCustomConfig () {
    return this.authHttp.get<CustomConfig>(ConfigService.BASE_APPLICATION_URL + '/custom')
      .catch(res => this.restExtractor.handleError(res))
  }

  updateCustomConfig (data: CustomConfig) {
    return this.authHttp.put<CustomConfig>(ConfigService.BASE_APPLICATION_URL + '/custom', data)
      .catch(res => this.restExtractor.handleError(res))
  }
}