rename apiAuth to login

This commit is contained in:
Denys Vuika
2023-01-30 18:06:23 -05:00
parent 67bc503391
commit 5cc273a15d

View File

@@ -38,7 +38,7 @@ export class RepoClient {
this.alfrescoApi.setConfig(browser.params.config); this.alfrescoApi.setConfig(browser.params.config);
} }
apiAuth(): Promise<any> { login(): Promise<any> {
return this.alfrescoApi.login(this.username, this.password); return this.alfrescoApi.login(this.username, this.password);
} }
@@ -71,7 +71,7 @@ export class RepoClient {
} }
async logout(): Promise<any> { async logout(): Promise<any> {
await this.apiAuth(); await this.login();
return this.alfrescoApi.logout(); return this.alfrescoApi.logout();
} }
} }