arreglar servicio

This commit is contained in:
Eduardo Quiros 2021-07-25 23:17:56 -06:00
parent fd2391f68d
commit 3439dcd202
No known key found for this signature in database
GPG Key ID: B77F36C3F12720B4
2 changed files with 3 additions and 6 deletions

View File

@ -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);
}
}

View File

@ -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[] {