funky-framadate-front/src/app/pages/end-confirmation/end-confirmation.component.ts

31 lines
741 B
TypeScript
Raw Normal View History

import {Component, OnInit} from '@angular/core';
import {BaseComponent} from '../base-page/base.component';
import {HttpClient} from '@angular/common/http';
2019-12-03 17:20:57 +01:00
import {ConfigService} from "../../services/config.service";
2019-08-10 17:41:01 +02:00
@Component({
selector: 'framadate-end-confirmation',
templateUrl: './end-confirmation.component.html',
styleUrls: ['./end-confirmation.component.scss']
2019-08-10 17:41:01 +02:00
})
export class EndConfirmationComponent extends BaseComponent implements OnInit {
public adminLink = '';
public publicLink = '';
mailToRecieve = '';
2019-08-10 17:41:01 +02:00
constructor(public config: ConfigService, public http: HttpClient) {
super(config);
}
2019-08-10 17:41:01 +02:00
ngOnInit() {
}
copyLink(adminLink: any) {
}
sendToEmail() {
2019-08-10 17:41:01 +02:00
}
2019-08-10 17:41:01 +02:00
}