refs #909 New dockerfile ssl
parent
6e559af686
commit
8ee00eaf19
|
@ -1 +1 @@
|
||||||
NG_APP_BASE_API_URL=https://127.0.0.1:8443
|
NG_APP_BASE_API_URL=https://127.0.0.1:8444
|
|
@ -11,4 +11,4 @@ RUN npm install
|
||||||
|
|
||||||
EXPOSE 4200
|
EXPOSE 4200
|
||||||
|
|
||||||
CMD ["ng", "serve", "--host", "0.0.0.0", "--disable-host-check"]
|
CMD ["ng", "serve", "--ssl","--host", "0.0.0.0", "--disable-host-check"]
|
|
@ -209,6 +209,7 @@ export class EditOrganizationalUnitComponent implements OnInit {
|
||||||
const putUrl = `${this.baseUrl}/organizational-units/${this.data.uuid}`;
|
const putUrl = `${this.baseUrl}/organizational-units/${this.data.uuid}`;
|
||||||
const headers = new HttpHeaders({ 'Content-Type': 'application/json' });
|
const headers = new HttpHeaders({ 'Content-Type': 'application/json' });
|
||||||
|
|
||||||
|
console.log('PUT URLLLLL:', formData);
|
||||||
this.http.put<any>(putUrl, formData, { headers }).subscribe(
|
this.http.put<any>(putUrl, formData, { headers }).subscribe(
|
||||||
response => {
|
response => {
|
||||||
console.log('PUT successful:', response);
|
console.log('PUT successful:', response);
|
||||||
|
|
Loading…
Reference in New Issue