bitwarden-estensione-browser/src/app/vault/attachments.component.ts

26 lines
1.2 KiB
TypeScript
Raw Normal View History

2018-04-06 05:50:06 +02:00
import { Component } from '@angular/core';
2018-01-30 05:19:55 +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 { UserService } from 'jslib-common/abstractions/user.service';
2018-01-30 05:19:55 +01:00
import { AttachmentsComponent as BaseAttachmentsComponent } from 'jslib-angular/components/attachments.component';
2018-01-30 05:19:55 +01:00
@Component({
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 {
constructor(cipherService: CipherService, i18nService: I18nService,
2018-08-29 15:31:25 +02:00
cryptoService: CryptoService, userService: UserService,
platformUtilsService: PlatformUtilsService, apiService: ApiService,
logService: LogService) {
super(cipherService, i18nService, cryptoService, userService, platformUtilsService,
apiService, window, logService);
2018-01-30 05:19:55 +01:00
}
}