Merge pull request #75 from Quantum-P3/fix/sprint-3/US-23

arreglar servicio de encuestas
This commit is contained in:
Eduardo Quiros 2021-07-26 06:30:28 +00:00 committed by GitHub
commit 6262989496
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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[] {