mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-09-17 14:21:29 +00:00
fixint
This commit is contained in:
@@ -49,9 +49,9 @@ export class UploadActions {
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
uploadPromise.then(() => {
|
await uploadPromise.then(() => {
|
||||||
Logger.info(`${fileName} uploaded in ${parentFolderId}`);
|
Logger.info(`${fileName} uploaded in ${parentFolderId}`);
|
||||||
})
|
});
|
||||||
|
|
||||||
return uploadPromise;
|
return uploadPromise;
|
||||||
}
|
}
|
||||||
|
@@ -84,11 +84,11 @@ export class IdentityService {
|
|||||||
const postBody = {};
|
const postBody = {};
|
||||||
return this.api.performIdentityOperation(path, method, queryParams, postBody);
|
return this.api.performIdentityOperation(path, method, queryParams, postBody);
|
||||||
|
|
||||||
const deletePromise = this.api.performIdentityOperation(path, method, queryParams, postBody)
|
const deletePromise = this.api.performIdentityOperation(path, method, queryParams, postBody);
|
||||||
|
|
||||||
deletePromise.then(() => {
|
await deletePromise.then(() => {
|
||||||
Logger.info(`user ${userId} delete`);
|
Logger.info(`user ${userId} delete`);
|
||||||
})
|
});
|
||||||
|
|
||||||
return deletePromise;
|
return deletePromise;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user