diff --git a/ogWebconsole/.env b/ogWebconsole/.env index 100978f..72796c1 100644 --- a/ogWebconsole/.env +++ b/ogWebconsole/.env @@ -1 +1 @@ -NG_APP_BASE_API_URL=https://127.0.0.1:8443 \ No newline at end of file +NG_APP_BASE_API_URL=https://127.0.0.1:8444 \ No newline at end of file diff --git a/ogWebconsole/dockerfile b/ogWebconsole/dockerfile index 47594cb..5611da3 100644 --- a/ogWebconsole/dockerfile +++ b/ogWebconsole/dockerfile @@ -11,4 +11,4 @@ RUN npm install EXPOSE 4200 -CMD ["ng", "serve", "--host", "0.0.0.0", "--disable-host-check"] \ No newline at end of file +CMD ["ng", "serve", "--ssl","--host", "0.0.0.0", "--disable-host-check"] \ No newline at end of file diff --git a/ogWebconsole/src/app/components/groups/shared/organizational-units/edit-organizational-unit/edit-organizational-unit.component.ts b/ogWebconsole/src/app/components/groups/shared/organizational-units/edit-organizational-unit/edit-organizational-unit.component.ts index cb9f3f7..c7b5607 100644 --- a/ogWebconsole/src/app/components/groups/shared/organizational-units/edit-organizational-unit/edit-organizational-unit.component.ts +++ b/ogWebconsole/src/app/components/groups/shared/organizational-units/edit-organizational-unit/edit-organizational-unit.component.ts @@ -209,6 +209,7 @@ export class EditOrganizationalUnitComponent implements OnInit { const putUrl = `${this.baseUrl}/organizational-units/${this.data.uuid}`; const headers = new HttpHeaders({ 'Content-Type': 'application/json' }); + console.log('PUT URLLLLL:', formData); this.http.put(putUrl, formData, { headers }).subscribe( response => { console.log('PUT successful:', response);