mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
sharing
This commit is contained in:
@@ -23,6 +23,8 @@ import { CipherView } from 'jslib/models/view/cipherView';
|
||||
})
|
||||
export class CiphersComponent extends BaseCiphersComponent {
|
||||
@Output() onAttachmentsClicked = new EventEmitter<CipherView>();
|
||||
@Output() onShareClicked = new EventEmitter<CipherView>();
|
||||
@Output() onCollectionsClicked = new EventEmitter<CipherView>();
|
||||
cipherType = CipherType;
|
||||
|
||||
constructor(cipherService: CipherService, private analytics: Angulartics2,
|
||||
@@ -40,11 +42,11 @@ export class CiphersComponent extends BaseCiphersComponent {
|
||||
}
|
||||
|
||||
share(c: CipherView) {
|
||||
//
|
||||
this.onShareClicked.emit(c);
|
||||
}
|
||||
|
||||
collections(c: CipherView) {
|
||||
//
|
||||
this.onCollectionsClicked.emit(c);
|
||||
}
|
||||
|
||||
delete(c: CipherView) {
|
||||
|
||||
Reference in New Issue
Block a user