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

27 lines
1.1 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 { ToasterService } from 'angular2-toaster';
2018-02-08 16:37:54 +01:00
import { Angulartics2 } from 'angulartics2';
2018-01-30 05:19:55 +01:00
import { CipherService } from 'jslib/abstractions/cipher.service';
import { CryptoService } from 'jslib/abstractions/crypto.service';
import { I18nService } from 'jslib/abstractions/i18n.service';
2018-02-03 05:42:33 +01:00
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
2018-08-29 15:31:25 +02:00
import { UserService } from 'jslib/abstractions/user.service';
2018-01-30 05:19:55 +01:00
2018-04-06 05:50:06 +02: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, analytics: Angulartics2,
toasterService: ToasterService, i18nService: I18nService,
2018-08-29 15:31:25 +02:00
cryptoService: CryptoService, userService: UserService,
2018-04-06 05:50:06 +02:00
platformUtilsService: PlatformUtilsService) {
2018-08-29 15:31:25 +02:00
super(cipherService, analytics, toasterService, i18nService, cryptoService, userService,
2018-06-08 18:16:23 +02:00
platformUtilsService, window);
2018-01-30 05:19:55 +01:00
}
}