mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 08:43:33 +00:00
* Implement disable send policy * Linter fixes * Add toast on submit if sends are disabled
10 lines
591 B
TypeScript
10 lines
591 B
TypeScript
export enum PolicyType {
|
|
TwoFactorAuthentication = 0, // Requires users to have 2fa enabled
|
|
MasterPassword = 1, // Sets minimum requirements for master password complexity
|
|
PasswordGenerator = 2, // Sets minimum requirements/default type for generated passwords/passphrases
|
|
SingleOrg = 3, // Allows users to only be apart of one organization
|
|
RequireSso = 4, // Requires users to authenticate with SSO
|
|
PersonalOwnership = 5, // Disables personal vault ownership for adding/cloning items
|
|
DisableSend = 6, // Disables the ability to create and edit Bitwarden Sends
|
|
}
|