funky-framadate-front/mocks/old-stuff/pages/end-confirmation/end-confirmation.component.ts

29 lines
863 B
TypeScript
Raw Normal View History

import { HttpClient } from '@angular/common/http';
import { Component, OnInit } from '@angular/core';
2021-04-29 10:41:47 +02:00
import { ToastService } from '../../../../src/app/core/services/toast.service';
import { ConfigService } from '../../services/config.service';
import { BaseComponent } from '../example/base-page/base.component';
2019-08-10 17:41:01 +02:00
@Component({
2020-04-22 12:56:18 +02:00
selector: 'app-end-confirmation',
2020-04-21 10:50:26 +02:00
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 {
2020-04-21 10:50:26 +02:00
mailToRecieve = '';
2019-08-10 17:41:01 +02:00
constructor(public config: ConfigService, public http: HttpClient, private toastService: ToastService) {
2020-04-21 10:50:26 +02:00
super(config);
this.mailToRecieve = this.config.myEmail;
}
2019-08-10 17:41:01 +02:00
2020-05-01 19:10:17 +02:00
ngOnInit(): void {}
2020-04-21 10:50:26 +02:00
copyLink(str: any) {
this.toastService.display(`Lien copié : ${str}`);
2020-04-21 10:50:26 +02:00
}
2020-04-21 10:50:26 +02:00
sendToEmail() {}
2019-08-10 17:41:01 +02:00
}