1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

various vault functionality

This commit is contained in:
Kyle Spearrin
2018-06-07 17:12:11 -04:00
parent a18a591f0a
commit 059df9c45d
11 changed files with 501 additions and 178 deletions

View File

@@ -4,12 +4,22 @@ import { CipherService } from 'jslib/abstractions/cipher.service';
import { CiphersComponent as BaseCiphersComponent } from 'jslib/angular/components/ciphers.component';
import { CipherType } from 'jslib/enums/cipherType';
import { CipherView } from 'jslib/models/view/cipherView';
@Component({
selector: 'app-vault-ciphers',
templateUrl: 'ciphers.component.html',
})
export class CiphersComponent extends BaseCiphersComponent {
cipherType = CipherType;
constructor(cipherService: CipherService) {
super(cipherService);
}
checkCipher(c: CipherView) {
(c as any).checked = !(c as any).checked;
}
}