remove reject of the headets

This commit is contained in:
Eudes Inácio
2023-10-25 09:08:49 +01:00
parent f92cdc5816
commit 97d86455cf
17 changed files with 108 additions and 71 deletions
+2 -2
View File
@@ -44,11 +44,11 @@ export class ProcessesService {
setHeader() {
this.headers = new HttpHeaders({'rejectUnauthorized': environment.rejectUnauthorized });;
this.headers = new HttpHeaders();;
this.headers = this.headers.set('Authorization', this.loggeduser.BasicAuthKey);
this.headers2 = new HttpHeaders({'rejectUnauthorized': environment.rejectUnauthorized });;
this.headers2 = new HttpHeaders();;
this.headers2 = this.headers2.set('Authorization', "Bearer " + CPSession.AuthorizationJwt);