bitwarden-desktop/src/app/vault/collections.component.ts

26 lines
1010 B
TypeScript
Raw Normal View History

2021-12-20 15:47:17 +01:00
import { Component } from "@angular/core";
2018-10-23 21:50:21 +02:00
2021-12-20 15:47:17 +01:00
import { CipherService } from "jslib-common/abstractions/cipher.service";
import { CollectionService } from "jslib-common/abstractions/collection.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";
2018-10-23 21:50:21 +02:00
2021-12-20 15:47:17 +01:00
import { CollectionsComponent as BaseCollectionsComponent } from "jslib-angular/components/collections.component";
2018-10-23 21:50:21 +02:00
@Component({
2021-12-20 15:47:17 +01:00
selector: "app-vault-collections",
templateUrl: "collections.component.html",
2018-10-23 21:50:21 +02:00
})
export class CollectionsComponent extends BaseCollectionsComponent {
2021-12-20 15:47:17 +01:00
constructor(
cipherService: CipherService,
i18nService: I18nService,
collectionService: CollectionService,
platformUtilsService: PlatformUtilsService,
logService: LogService
) {
super(collectionService, platformUtilsService, i18nService, cipherService, logService);
}
2018-10-23 21:50:21 +02:00
}