Skip to content

Commit

Permalink
working #554
Browse files Browse the repository at this point in the history
  • Loading branch information
BobLamarley committed Dec 25, 2024
1 parent a2f9c41 commit b047288
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions manager2/src/app/admin/projects/projects.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,16 +291,18 @@ export class ProjectsService {
}

delete_pending(projectUuid: string): Observable<any> {
let params = new HttpParams().set('uuid', projectUuid);
//let user = this.authService.profile;
let params = new HttpParams();

const httpOptions = {
params: params,
let httpOptions = {
//headers: new HttpHeaders({
// 'x-api-key': user.apikey
//}),
params: params
};

return this.http.delete(
environment.apiUrl + '/pending/project',
environment.apiUrl + '/pending/project/' + projectUuid,
httpOptions
);
}

}

0 comments on commit b047288

Please sign in to comment.