mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ACS-5839] migrate to latest JS-API types (#8859)
* [ci:force] migrate Minimal Node to Node * [ci:force] remove js-api wrappers and use real types * [ci:force] remove js-api wrappers and use real types * [ci:force] fix linting errors * [ci:force] fix linting errors * [ci:force] security fixes * [ci:force] sonarcloud bug fixes * [ci:force] dead code elimination, sonar suggested fixes
This commit is contained in:
@@ -16,19 +16,13 @@
|
||||
*/
|
||||
|
||||
export class AlfrescoApiMock {
|
||||
|
||||
login() {
|
||||
return new Promise((resolve) => {
|
||||
resolve('TICKET_4479f4d3bb155195879bfbb8d5206f433488a1b1');
|
||||
});
|
||||
return Promise.resolve('TICKET_4479f4d3bb155195879bfbb8d5206f433488a1b1');
|
||||
}
|
||||
|
||||
logout() {
|
||||
return new Promise((resolve) => {
|
||||
resolve('logout');
|
||||
});
|
||||
return Promise.resolve('logout');
|
||||
}
|
||||
|
||||
changeConfig() {
|
||||
}
|
||||
changeConfig() {}
|
||||
}
|
||||
|
Reference in New Issue
Block a user