1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-23 03:33:28 +00:00

Remove empty catch blocks and remove allow-empty-catch tslint rule (#170)

* Remove empty catch blocks and remove allow-empty-catch tslint rule

* Update jslib to #513

* Fix build errors after update of jslib

* Add missing params to LoginCommand ctor

* Fix build errors due to missing dependencies

* Add changes to package.json and package-lock.json

* Fixed formatting in tslint.json
This commit is contained in:
Daniel James Smith
2021-11-08 12:47:26 +01:00
committed by GitHub
parent e43d192007
commit a96144d6dc
12 changed files with 134 additions and 450 deletions

View File

@@ -12,6 +12,7 @@ import { EnvironmentComponent } from './environment.component';
import { ApiKeyService } from 'jslib-common/abstractions/apiKey.service';
import { AuthService } from 'jslib-common/abstractions/auth.service';
import { I18nService } from 'jslib-common/abstractions/i18n.service';
import { LogService } from 'jslib-common/abstractions/log.service';
import { PlatformUtilsService } from 'jslib-common/abstractions/platformUtils.service';
import { ModalService } from 'jslib-angular/services/modal.service';
@@ -35,7 +36,7 @@ export class ApiKeyComponent {
constructor(private authService: AuthService, private apiKeyService: ApiKeyService, private router: Router,
private i18nService: I18nService, private componentFactoryResolver: ComponentFactoryResolver,
private configurationService: ConfigurationService, private platformUtilsService: PlatformUtilsService,
private modalService: ModalService) { }
private modalService: ModalService, private logService: LogService) { }
async submit() {
if (this.clientId == null || this.clientId === '') {
@@ -67,7 +68,9 @@ export class ApiKeyComponent {
const organizationId = await this.apiKeyService.getEntityId();
await this.configurationService.saveOrganizationId(organizationId);
this.router.navigate([this.successRoute]);
} catch { }
} catch (e) {
this.logService.error(e);
}
}
async settings() {