We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f89133 commit a70528bCopy full SHA for a70528b
crates/bitwarden-core/src/admin_console/policy.rs
@@ -49,6 +49,7 @@ pub enum PolicyType {
49
RemoveUnlockWithPin = 14,
50
RestrictedItemTypesPolicy = 15,
51
UriMatchDefaults = 16,
52
+ AutomaticUserConfirmation = 18,
53
AutotypeDefaultSetting = 17,
54
}
55
@@ -107,6 +108,9 @@ impl From<bitwarden_api_api::models::PolicyType> for PolicyType {
107
108
bitwarden_api_api::models::PolicyType::AutotypeDefaultSetting => {
109
PolicyType::AutotypeDefaultSetting
110
111
+ bitwarden_api_api::models::PolicyType::AutomaticUserConfirmation => {
112
+ PolicyType::AutomaticUserConfirmation
113
+ }
114
115
116
0 commit comments