mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
Fixing the end slash for the url otherwise the call will fail (#8674)
This commit is contained in:
@@ -80,7 +80,7 @@ async function healthCheck(nameService: string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function getApplicationByStatus(status: string) {
|
async function getApplicationByStatus(status: string) {
|
||||||
const url = `${args.host}/deployment-service/v1/applications/`;
|
const url = `${args.host}/deployment-service/v1/applications`;
|
||||||
|
|
||||||
const pathParams = {};
|
const pathParams = {};
|
||||||
const queryParams = { status };
|
const queryParams = { status };
|
||||||
@@ -250,7 +250,7 @@ function deleteDescriptor(name: string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function deploy(model: any) {
|
function deploy(model: any) {
|
||||||
const url = `${args.host}/deployment-service/v1/applications/`;
|
const url = `${args.host}/deployment-service/v1/applications`;
|
||||||
|
|
||||||
const pathParams = {};
|
const pathParams = {};
|
||||||
const queryParams = {};
|
const queryParams = {};
|
||||||
|
Reference in New Issue
Block a user