arreglar servicio
This commit is contained in:
parent
fd2391f68d
commit
3439dcd202
|
@ -23,9 +23,6 @@ export class EncuestaDeleteDialogComponent {
|
|||
this.encuestaService.deleteEncuesta(encuesta).subscribe(() => {
|
||||
this.activeModal.close('deleted');
|
||||
});
|
||||
if (encuesta.usuarioExtra != undefined) {
|
||||
const userEmail = encuesta.usuarioExtra!.user!.login;
|
||||
this.encuestaService.deletedNotification(userEmail!);
|
||||
}
|
||||
this.encuestaService.deletedNotification(encuesta);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -84,8 +84,8 @@ export class EncuestaService {
|
|||
return this.http.delete(`${this.resourceUrl}/${id}`, { observe: 'response' });
|
||||
}
|
||||
|
||||
deletedNotification(email: string): Observable<HttpResponse<{}>> {
|
||||
return this.http.delete(`${this.resourceUrl}/${email}`, { observe: 'response' });
|
||||
deletedNotification(encuesta: IEncuesta): Observable<HttpResponse<{}>> {
|
||||
return this.http.delete(`${this.resourceUrl}/notify/${encuesta.id}`, { observe: 'response' });
|
||||
}
|
||||
|
||||
addEncuestaToCollectionIfMissing(encuestaCollection: IEncuesta[], ...encuestasToCheck: (IEncuesta | null | undefined)[]): IEncuesta[] {
|
||||
|
|
Loading…
Reference in New Issue