feat(policies): add URI Match Defaults organizational policy (#6294)

* feat(policies): add URI Match Defaults organizational policy

Signed-off-by: Ben Brooks <bbrooks@bitwarden.com>

* feat(policies): remove unecessary model and org feature

Signed-off-by: Ben Brooks <bbrooks@bitwarden.com>

---------

Signed-off-by: Ben Brooks <bbrooks@bitwarden.com>
This commit is contained in:
Ben Brooks 2025-09-17 14:36:00 -07:00 committed by GitHub
parent 26e574e8d7
commit e46365ac20
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,6 +18,7 @@ public enum PolicyType : byte
FreeFamiliesSponsorshipPolicy = 13,
RemoveUnlockWithPin = 14,
RestrictedItemTypesPolicy = 15,
UriMatchDefaults = 16,
}
public static class PolicyTypeExtensions
@ -46,6 +47,7 @@ public static class PolicyTypeExtensions
PolicyType.FreeFamiliesSponsorshipPolicy => "Remove Free Bitwarden Families sponsorship",
PolicyType.RemoveUnlockWithPin => "Remove unlock with PIN",
PolicyType.RestrictedItemTypesPolicy => "Restricted item types",
PolicyType.UriMatchDefaults => "URI match defaults",
};
}
}