new enums

This commit is contained in:
Kyle Spearrin 2020-01-15 09:56:51 -05:00
parent 5819023bc4
commit 844699f1a4
2 changed files with 9 additions and 0 deletions

View File

@ -41,4 +41,8 @@ export enum EventType {
Organization_Updated = 1600,
Organization_PurgedVault = 1601,
// Organization_ClientExportedVault = 1602,
Policy_Created = 1700,
Policy_Updated = 1701,
Policy_Deleted = 1702,
}

5
src/enums/policyType.ts Normal file
View File

@ -0,0 +1,5 @@
export enum PolicyType {
TwoFactorAuthentication = 0,
MasterPassword = 1,
PasswordGenerator = 2,
}