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

39 lines
1.2 KiB
TypeScript
Raw Normal View History

2021-12-20 15:47:17 +01:00
import { Component } from "@angular/core";
2018-01-30 05:19:55 +01:00
2021-12-20 15:47:17 +01:00
import { ApiService } from "jslib-common/abstractions/api.service";
import { CipherService } from "jslib-common/abstractions/cipher.service";
import { CryptoService } from "jslib-common/abstractions/crypto.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 { StateService } from "jslib-common/abstractions/state.service";
2018-01-30 05:19:55 +01:00
2021-12-20 15:47:17 +01:00
import { AttachmentsComponent as BaseAttachmentsComponent } from "jslib-angular/components/attachments.component";
2018-01-30 05:19:55 +01:00
@Component({
2021-12-20 15:47:17 +01:00
selector: "app-vault-attachments",
templateUrl: "attachments.component.html",
2018-01-30 05:19:55 +01:00
})
2018-04-06 05:50:06 +02:00
export class AttachmentsComponent extends BaseAttachmentsComponent {
2021-12-20 15:47:17 +01:00
constructor(
cipherService: CipherService,
i18nService: I18nService,
cryptoService: CryptoService,
platformUtilsService: PlatformUtilsService,
apiService: ApiService,
logService: LogService,
stateService: StateService
) {
super(
cipherService,
i18nService,
cryptoService,
platformUtilsService,
apiService,
window,
logService,
stateService
);
}
2018-01-30 05:19:55 +01:00
}