1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

rename policy types

This commit is contained in:
Kyle Spearrin 2020-01-15 08:19:47 -05:00
parent c117d109b4
commit 0628fb682e

View File

@ -2,7 +2,8 @@
{
public enum PolicyType : byte
{
TwoStepLogin = 0,
MasterPassword = 1
TwoFactorAuthentication = 0,
MasterPassword = 1,
PasswordGenerator = 2
}
}