aboutsummaryrefslogtreecommitdiffstats
path: root/webapp/src/app/pages/config/config-global/config-global.component.ts
blob: fcd8b62a3d568617f8c17bf2c6459d514913bf34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { Component, OnInit } from '@angular/core';

import { ConfigService, IConfig } from '../../../@core-xds/services/config.service';

@Component({
  selector: 'xds-config-global',
  styleUrls: ['./config-global.component.scss'],
  templateUrl: './config-global.component.html',
})
export class ConfigGlobalComponent implements OnInit {

  public configFormChanged = false;

  constructor(
    private configSvr: ConfigService,
  ) {
  }

  ngOnInit() {
  }

  onSubmit() {
  }
}