Fix lint errors/warnings (#187)

This commit is contained in:
Chad Scharf 2020-10-20 10:20:22 -04:00 committed by GitHub
parent 4cd20f0fa8
commit 23ded0d115
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -353,7 +353,7 @@ export class ApiService implements ApiServiceAbstraction {
}
async getSsoUserIdentifier(): Promise<string> {
return this.send('GET', '/accounts/sso/user-identifier', null, true, true)
return this.send('GET', '/accounts/sso/user-identifier', null, true, true);
}
// Folder APIs
@ -701,7 +701,6 @@ export class ApiService implements ApiServiceAbstraction {
return new ListResponse(r, PlanResponse);
}
async postImportDirectory(organizationId: string, request: ImportDirectoryRequest): Promise<any> {
return this.send('POST', '/organizations/' + organizationId + '/import', request, true, false);
}