1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

getAll ciphers FromApiForOrganization

This commit is contained in:
Kyle Spearrin
2018-12-14 13:55:44 -05:00
parent e55926336c
commit e10523cc61
2 changed files with 19 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ export abstract class CipherService {
getAllDecrypted: () => Promise<CipherView[]>;
getAllDecryptedForGrouping: (groupingId: string, folder?: boolean) => Promise<CipherView[]>;
getAllDecryptedForUrl: (url: string, includeOtherTypes?: CipherType[]) => Promise<CipherView[]>;
getAllFromApiForOrganization: (organizationId: string) => Promise<CipherView[]>;
getLastUsedForUrl: (url: string) => Promise<CipherView>;
updateLastUsedDate: (id: string) => Promise<void>;
saveNeverDomain: (domain: string) => Promise<void>;