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

35 lines
1.1 KiB
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 { OrganizationService } from "jslib-common/abstractions/organization.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 { ShareComponent as BaseShareComponent } from "jslib-angular/components/share.component";
2018-10-23 21:50:21 +02:00
@Component({
2021-12-20 15:47:17 +01:00
selector: "app-vault-share",
templateUrl: "share.component.html",
2018-10-23 21:50:21 +02:00
})
export class ShareComponent extends BaseShareComponent {
2021-12-20 15:47:17 +01:00
constructor(
cipherService: CipherService,
i18nService: I18nService,
collectionService: CollectionService,
platformUtilsService: PlatformUtilsService,
logService: LogService,
organizationService: OrganizationService
) {
super(
collectionService,
platformUtilsService,
i18nService,
cipherService,
logService,
organizationService
);
}
2018-10-23 21:50:21 +02:00
}