2020-01-22 11:18:55 +01:00
|
|
|
import {Component, OnInit} from '@angular/core';
|
2019-12-03 17:20:57 +01:00
|
|
|
import {ConfigService} from '../../services/config.service';
|
2020-01-22 11:18:55 +01:00
|
|
|
|
2019-11-18 19:32:14 +01:00
|
|
|
@Component({
|
2020-01-22 11:18:55 +01:00
|
|
|
selector: 'framadate-admin',
|
|
|
|
templateUrl: './admin.component.html',
|
|
|
|
styleUrls: ['./admin.component.scss']
|
2019-11-18 19:32:14 +01:00
|
|
|
})
|
|
|
|
export class AdminComponent implements OnInit {
|
|
|
|
|
2020-01-22 11:18:55 +01:00
|
|
|
constructor(public config: ConfigService) {
|
|
|
|
}
|
2019-11-18 19:32:14 +01:00
|
|
|
|
2020-01-22 11:18:55 +01:00
|
|
|
ngOnInit() {
|
|
|
|
}
|
2019-11-18 19:32:14 +01:00
|
|
|
|
|
|
|
}
|