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.encuestaService.deleteEncuesta(encuesta).subscribe(() => {
this.activeModal.close('deleted'); this.activeModal.close('deleted');
}); });
if (encuesta.usuarioExtra != undefined) { this.encuestaService.deletedNotification(encuesta);
const userEmail = encuesta.usuarioExtra!.user!.login;
this.encuestaService.deletedNotification(userEmail!);
}
} }
} }

View File

@ -84,8 +84,8 @@ export class EncuestaService {
return this.http.delete(`${this.resourceUrl}/${id}`, { observe: 'response' }); return this.http.delete(`${this.resourceUrl}/${id}`, { observe: 'response' });
} }
deletedNotification(email: string): Observable<HttpResponse<{}>> { deletedNotification(encuesta: IEncuesta): Observable<HttpResponse<{}>> {
return this.http.delete(`${this.resourceUrl}/${email}`, { observe: 'response' }); return this.http.delete(`${this.resourceUrl}/notify/${encuesta.id}`, { observe: 'response' });
} }
addEncuestaToCollectionIfMissing(encuestaCollection: IEncuesta[], ...encuestasToCheck: (IEncuesta | null | undefined)[]): IEncuesta[] { addEncuestaToCollectionIfMissing(encuestaCollection: IEncuesta[], ...encuestasToCheck: (IEncuesta | null | undefined)[]): IEncuesta[] {