2023-03-10 08:11:11 -05:00
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core;
|
2022-08-29 16:06:55 -04:00
|
|
|
|
|
2018-08-15 10:54:15 -04:00
|
|
|
|
public static class Constants
|
|
|
|
|
|
{
|
|
|
|
|
|
public const int BypassFiltersEventId = 12482444;
|
2023-10-30 08:40:06 -05:00
|
|
|
|
public const int FailedSecretVerificationDelay = 2000;
|
2021-08-04 09:00:30 +10:00
|
|
|
|
|
|
|
|
|
|
// File size limits - give 1 MB extra for cushion.
|
|
|
|
|
|
// Note: if request size limits are changed, 'client_max_body_size'
|
|
|
|
|
|
// in nginx/proxy.conf may also need to be updated accordingly.
|
|
|
|
|
|
public const long FileSize101mb = 101L * 1024L * 1024L;
|
|
|
|
|
|
public const long FileSize501mb = 501L * 1024L * 1024L;
|
2023-01-18 13:16:57 -05:00
|
|
|
|
public const string DatabaseFieldProtectorPurpose = "DatabaseFieldProtection";
|
|
|
|
|
|
public const string DatabaseFieldProtectedPrefix = "P|";
|
2023-05-15 07:38:41 -07:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Default number of days an organization has to apply an updated license to their self-hosted installation after
|
|
|
|
|
|
/// their subscription has expired.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const int OrganizationSelfHostSubscriptionGracePeriodDays = 60;
|
2023-09-28 08:45:13 -04:00
|
|
|
|
|
2023-10-17 18:17:13 +02:00
|
|
|
|
public const string Fido2KeyCipherMinimumVersion = "2023.10.0";
|
|
|
|
|
|
|
2023-11-20 15:55:31 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Used by IdentityServer to identify our own provider.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string IdentityProvider = "bitwarden";
|
2023-12-20 22:54:45 +01:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Date identifier used in ProviderService to determine if a provider was created before Nov 6, 2023.
|
|
|
|
|
|
/// If true, the organization plan assigned to that provider is updated to a 2020 plan.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public static readonly DateTime ProviderCreatedPriorNov62023 = new DateTime(2023, 11, 6);
|
2024-02-13 20:28:14 +01:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// When you set the ProrationBehavior to create_prorations,
|
|
|
|
|
|
/// Stripe will automatically create prorations for any changes made to the subscription,
|
|
|
|
|
|
/// such as changing the plan, adding or removing quantities, or applying discounts.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string CreateProrations = "create_prorations";
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// When you set the ProrationBehavior to always_invoice,
|
|
|
|
|
|
/// Stripe will always generate an invoice when a subscription update occurs,
|
|
|
|
|
|
/// regardless of whether there is a proration or not.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string AlwaysInvoice = "always_invoice";
|
2018-08-15 10:54:15 -04:00
|
|
|
|
}
|
2020-08-26 14:12:04 -04:00
|
|
|
|
|
2023-12-05 17:21:46 +01:00
|
|
|
|
public static class AuthConstants
|
|
|
|
|
|
{
|
|
|
|
|
|
public static readonly RangeConstant PBKDF2_ITERATIONS = new(600_000, 2_000_000, 600_000);
|
|
|
|
|
|
|
|
|
|
|
|
public static readonly RangeConstant ARGON2_ITERATIONS = new(2, 10, 3);
|
|
|
|
|
|
public static readonly RangeConstant ARGON2_MEMORY = new(15, 1024, 64);
|
|
|
|
|
|
public static readonly RangeConstant ARGON2_PARALLELISM = new(1, 16, 4);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class RangeConstant
|
|
|
|
|
|
{
|
|
|
|
|
|
public int Default { get; }
|
|
|
|
|
|
public int Min { get; }
|
|
|
|
|
|
public int Max { get; }
|
|
|
|
|
|
|
|
|
|
|
|
public RangeConstant(int min, int max, int defaultValue)
|
|
|
|
|
|
{
|
|
|
|
|
|
Default = defaultValue;
|
|
|
|
|
|
Min = min;
|
|
|
|
|
|
Max = max;
|
|
|
|
|
|
|
|
|
|
|
|
if (Min > Max)
|
|
|
|
|
|
{
|
|
|
|
|
|
throw new ArgumentOutOfRangeException($"{Min} is larger than {Max}.");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!InsideRange(defaultValue))
|
|
|
|
|
|
{
|
|
|
|
|
|
throw new ArgumentOutOfRangeException($"{Default} is outside allowed range of {Min}-{Max}.");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public bool InsideRange(int number)
|
|
|
|
|
|
{
|
|
|
|
|
|
return Min <= number && number <= Max;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-08-26 14:12:04 -04:00
|
|
|
|
public static class TokenPurposes
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string LinkSso = "LinkSso";
|
|
|
|
|
|
}
|
2021-01-11 11:03:46 -05:00
|
|
|
|
|
|
|
|
|
|
public static class AuthenticationSchemes
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string BitwardenExternalCookieAuthenticationScheme = "bw.external";
|
2018-08-15 10:54:15 -04:00
|
|
|
|
}
|
2023-03-07 13:46:52 -05:00
|
|
|
|
|
|
|
|
|
|
public static class FeatureFlagKeys
|
|
|
|
|
|
{
|
2024-06-12 15:43:41 +01:00
|
|
|
|
public const string DisplayEuEnvironment = "display-eu-environment";
|
2023-09-25 08:16:21 -05:00
|
|
|
|
public const string BrowserFilelessImport = "browser-fileless-import";
|
2024-05-06 08:49:18 -04:00
|
|
|
|
public const string ReturnErrorOnExistingKeypair = "return-error-on-existing-keypair";
|
2024-05-24 10:13:17 -05:00
|
|
|
|
public const string UseTreeWalkerApiForPageDetailsCollection = "use-tree-walker-api-for-page-details-collection";
|
[AC-1122] Add AllowAdminAccessToAllCollectionItems setting to Organizations (#3379)
* [AC-1117] Add manage permission (#3126)
* Update sql files to add Manage permission
* Add migration script
* Rename collection manage migration file to remove duplicate migration date
* Migrations
* Add manage to models
* Add manage to repository
* Add constraint to Manage columns
* Migration lint fixes
* Add manage to OrganizationUserUserDetails_ReadWithCollectionsById
* Add missing manage fields
* Add 'Manage' to UserCollectionDetails
* Use CREATE OR ALTER where possible
* [AC-1374] Limit collection creation/deletion to Owner/Admin (#3145)
* feat: update org table with new column, write migration, refs AC-1374
* feat: update views with new column, refs AC-1374
* feat: Alter sprocs (org create/update) to include new column, refs AC-1374
* feat: update entity/data/request/response models to handle new column, refs AC-1374
* feat: update necessary Provider related views during migration, refs AC-1374
* fix: update org create to default new column to false, refs AC-1374
* feat: added new API/request model for collection management and removed property from update request model, refs AC-1374
* fix: renamed migration script to be after secrets manage beta column changes, refs AC-1374
* fix: dotnet format, refs AC-1374
* feat: add ef migrations to reflect mssql changes, refs AC-1374
* fix: dotnet format, refs AC-1374
* feat: update API signature to accept Guid and explain Cd verbiage, refs AC-1374
* fix: merge conflict resolution
* [AC-1174] CollectionUser and CollectionGroup authorization handlers (#3194)
* [AC-1174] Introduce BulkAuthorizationHandler.cs
* [AC-1174] Introduce CollectionUserAuthorizationHandler
* [AC-1174] Add CreateForNewCollection CollectionUser requirement
* [AC-1174] Add some more details to CollectionCustomization
* [AC-1174] Formatting
* [AC-1174] Add CollectionGroupOperation.cs
* [AC-1174] Introduce CollectionGroupAuthorizationHandler.cs
* [AC-1174] Cleanup CollectionFixture customization
Implement and use re-usable extension method to support seeded Guids
* [AC-1174] Introduce WithValueFromList AutoFixtureExtensions
Modify CollectionCustomization to use multiple organization Ids for auto generated test data
* [AC-1174] Simplify CollectionUserAuthorizationHandler.cs
Modify the authorization handler to only perform authorization logic. Validation logic will need to be handled by any calling commands/controllers instead.
* [AC-1174] Introduce shared CollectionAccessAuthorizationHandlerBase
A shared base authorization handler was created for both CollectionUser and CollectionGroup resources, as they share the same underlying management authorization logic.
* [AC-1174] Update CollectionUserAuthorizationHandler and CollectionGroupAuthorizationHandler to use the new CollectionAccessAuthorizationHandlerBase class
* [AC-1174] Formatting
* [AC-1174] Cleanup typo and redundant ToList() call
* [AC-1174] Add check for provider users
* [AC-1174] Reduce nested loops
* [AC-1174] Introduce ICollectionAccess.cs
* [AC-1174] Remove individual CollectionGroup and CollectionUser auth handlers and use base class instead
* [AC-1174] Tweak unit test to fail minimally
* [AC-1174] Reorganize authorization handlers in Core project
* [AC-1174] Introduce new AddCoreAuthorizationHandlers() extension method
* [AC-1174] Move CollectionAccessAuthorizationHandler into Api project
* [AC-1174] Move CollectionFixture to Vault folder
* [AC-1174] Rename operation to CreateUpdateDelete
* [AC-1174] Require single organization for collection access authorization handler
- Add requirement that all target collections must belong to the same organization
- Simplify logic related to multiple organizations
- Update tests and helpers
- Use ToHashSet to improve lookup time
* [AC-1174] Fix null reference exception
* [AC-1174] Throw bad request exception when collections belong to different organizations
* [AC-1174] Switch to CollectionAuthorizationHandler instead of CollectionAccessAuthorizationHandler to reduce complexity
* Fix improper merge conflict resolution
* fix: add permission check for collection management api, refs AC-1647 (#3252)
* [AC-1125] Enforce org setting for creating/deleting collections (#3241)
* [AC-1117] Add manage permission (#3126)
* Update sql files to add Manage permission
* Add migration script
* Rename collection manage migration file to remove duplicate migration date
* Migrations
* Add manage to models
* Add manage to repository
* Add constraint to Manage columns
* Migration lint fixes
* Add manage to OrganizationUserUserDetails_ReadWithCollectionsById
* Add missing manage fields
* Add 'Manage' to UserCollectionDetails
* Use CREATE OR ALTER where possible
* [AC-1374] Limit collection creation/deletion to Owner/Admin (#3145)
* feat: update org table with new column, write migration, refs AC-1374
* feat: update views with new column, refs AC-1374
* feat: Alter sprocs (org create/update) to include new column, refs AC-1374
* feat: update entity/data/request/response models to handle new column, refs AC-1374
* feat: update necessary Provider related views during migration, refs AC-1374
* fix: update org create to default new column to false, refs AC-1374
* feat: added new API/request model for collection management and removed property from update request model, refs AC-1374
* fix: renamed migration script to be after secrets manage beta column changes, refs AC-1374
* fix: dotnet format, refs AC-1374
* feat: add ef migrations to reflect mssql changes, refs AC-1374
* fix: dotnet format, refs AC-1374
* feat: update API signature to accept Guid and explain Cd verbiage, refs AC-1374
* feat: created collection auth handler/operations, added LimitCollectionCdOwnerAdmin to CurrentContentOrganization, refs AC-1125
* feat: create vault service collection extensions and register with base services, refs AC-1125
* feat: deprecated CurrentContext.CreateNewCollections, refs AC-1125
* feat: deprecate DeleteAnyCollection for single resource usages, refs AC-1125
* feat: move service registration to api, update references, refs AC-1125
* feat: add bulk delete authorization handler, refs AC-1125
* feat: always assign user and give manage access on create, refs AC-1125
* fix: updated CurrentContextOrganization type, refs AC-1125
* feat: combined existing collection authorization handlers/operations, refs AC-1125
* fix: OrganizationServiceTests -> CurrentContentOrganization typo, refs AC-1125
* fix: format, refs AC-1125
* fix: update collection controller tests, refs AC-1125
* fix: dotnet format, refs AC-1125
* feat: removed extra BulkAuthorizationHandler, refs AC-1125
* fix: dotnet format, refs AC-1125
* fix: change string to guid for org id, update bulk delete request model, refs AC-1125
* fix: remove delete many collection check, refs AC-1125
* fix: clean up collection auth handler, refs AC-1125
* fix: format fix for CollectionOperations, refs AC-1125
* fix: removed unnecessary owner check, add org null check to custom permission validation, refs AC-1125
* fix: remove unused methods in CurrentContext, refs AC-1125
* fix: removed obsolete test, fixed failling delete many test, refs AC-1125
* fix: CollectionAuthorizationHandlerTests fixes, refs AC-1125
* fix: OrganizationServiceTests fix broken test by mocking GetOrganization, refs AC-1125
* fix: CollectionAuthorizationHandler - remove unused repository, refs AC-1125
* feat: moved UserId null check to common method, refs AC-1125
* fix: updated auth handler tests to remove dependency on requirement for common code checks, refs AC-1125
* feat: updated conditionals/comments for create/delete methods within colleciton auth handler, refs AC-1125
* feat: added create/delete collection auth handler success methods, refs AC-1125
* fix: new up permissions to prevent excessive null checks, refs AC-1125
* fix: remove old reference to CreateNewCollections, refs AC-1125
* fix: typo within ViewAssignedCollections method, refs AC-1125
---------
Co-authored-by: Robyn MacCallum <robyntmaccallum@gmail.com>
* refactor: remove organizationId from CollectionBulkDeleteRequestModel, refs AC-1649 (#3282)
* [AC-1174] Bulk Collection Management (#3229)
* [AC-1174] Update SelectionReadOnlyRequestModel to use Guid for Id property
* [AC-1174] Introduce initial bulk-access collection endpoint
* [AC-1174] Introduce BulkAddCollectionAccessCommand and validation logic/tests
* [AC-1174] Add CreateOrUpdateAccessMany method to CollectionRepository
* [AC-1174] Add event logs for bulk add collection access command
* [AC-1174] Add User_BumpAccountRevisionDateByCollectionIds and database migration script
* [AC-1174] Implement EF repository method
* [AC-1174] Improve null checks
* [AC-1174] Remove unnecessary BulkCollectionAccessRequestModel helpers
* [AC-1174] Add unit tests for new controller endpoint
* [AC-1174] Fix formatting
* [AC-1174] Remove comment
* [AC-1174] Remove redundant organizationId parameter
* [AC-1174] Ensure user and group Ids are distinct
* [AC-1174] Cleanup tests based on PR feedback
* [AC-1174] Formatting
* [AC-1174] Update CollectionGroup alias in the sproc
* [AC-1174] Add some additional comments to SQL sproc
* [AC-1174] Add comment explaining additional SaveChangesAsync call
---------
Co-authored-by: Thomas Rittson <trittson@bitwarden.com>
* [AC-1646] Rename LimitCollectionCdOwnerAdmin column (#3300)
* Rename LimitCollectionCdOwnerAdmin -> LimitCollectionCreationDeletion
* Rename and bump migration script
* [AC-1666] Removed EditAnyCollection from Create/Delete permission checks (#3301)
* fix: remove EditAnyCollection from Create/Delete permission check, refs AC-1666
* fix: updated comment, refs AC-1666
* [AC-1669] Bug - Remove obsolete assignUserId from CollectionService.SaveAsync(...) (#3312)
* fix: remove AssignUserId from CollectionService.SaveAsync, refs AC-1669
* fix: add manage access conditional before creating collection, refs AC-1669
* fix: move access logic for create/update, fix all tests, refs AC-1669
* fix: add CollectionAccessSelection fixture, update tests, update bad reqeuest message, refs AC-1669
* fix: format, refs AC-1669
* fix: update null params with specific arg.is null checks, refs Ac-1669
* fix: update attribute class name, refs AC-1669
* [AC-1713] [Flexible collections] Add feature flags to server (#3334)
* Add feature flags for FlexibleCollections and BulkCollectionAccess
* Flag new routes and behaviour
---------
Co-authored-by: Rui Tomé <108268980+r-tome@users.noreply.github.com>
* Add joint codeownership for auth handlers (#3346)
* [AC-1717] Update default values for LimitCollectionCreationDeletion (#3365)
* Change default value in organization create sproc to 1
* Drop old column name still present in some QA instances
* Set LimitCollectionCreationDeletion value in code based on feature flag
* Fix: add missing namespace after merging in master
* Fix: add missing namespace after merging in master
* [AC-1683] Fix DB migrations for new Manage permission (#3307)
* [AC-1683] Update migration script and introduce V2 procedures and types
* [AC-1683] Update repository calls to use new V2 procedures / types
* [AC-1684] Update bulk add collection migration script to use new V2 type
* [AC-1683] Undo Manage changes to more original procedures
* [AC-1683] Restore whitespace changes
* [AC-1683] Clarify comments regarding explicit column lists
* [AC-1683] Update migration script dates
* [AC-1683] Split the migration script for readability
* [AC-1683] Re-name SelectReadOnlyArray_V2 to CollectionAccessSelectionType
* [AC-1648] [Flexible Collections] Bump migration scripts before feature branch merge (#3371)
* Bump dates on sql migration scripts
* Bump date on ef migrations
* [AC-1727] Add AllowAdminAccessToAllCollectionItems column to Organization table
* [AC-1720] Update stored procedures and views that query the organization table and new column
* [AC-1727] Add EF migrations for new DB column
* [AC-1729] Update API request/response models
* [AC-1122] Add new setting to CurrentContextOrganization.cs
* [AC-1122] Ensure new setting is disabled for new orgs when the feature flag is enabled
* [AC-1122] Use V1 feature flag for new setting
* [AC-1122] Formatting
* [AC-1122] Update migration script date
---------
Co-authored-by: Robyn MacCallum <robyntmaccallum@gmail.com>
Co-authored-by: Vincent Salucci <26154748+vincentsalucci@users.noreply.github.com>
Co-authored-by: Vincent Salucci <vincesalucci21@gmail.com>
Co-authored-by: Thomas Rittson <trittson@bitwarden.com>
Co-authored-by: Thomas Rittson <31796059+eliykat@users.noreply.github.com>
Co-authored-by: Rui Tomé <108268980+r-tome@users.noreply.github.com>
2023-11-27 11:44:07 -08:00
|
|
|
|
public const string FlexibleCollectionsV1 = "flexible-collections-v-1"; // v-1 is intentional
|
2023-10-31 11:06:02 -04:00
|
|
|
|
public const string ItemShare = "item-share";
|
2023-11-09 14:56:08 -05:00
|
|
|
|
public const string KeyRotationImprovements = "key-rotation-improvements";
|
2024-01-24 10:13:00 -08:00
|
|
|
|
public const string DuoRedirect = "duo-redirect";
|
2024-02-13 20:28:14 +01:00
|
|
|
|
public const string PM5864DollarThreshold = "PM-5864-dollar-threshold";
|
2024-02-29 08:15:18 -05:00
|
|
|
|
public const string ShowPaymentMethodWarningBanners = "show-payment-method-warning-banners";
|
2024-04-17 10:09:53 +01:00
|
|
|
|
public const string AC2101UpdateTrialInitiationEmail = "AC-2101-update-trial-initiation-email";
|
2024-03-28 08:46:12 -04:00
|
|
|
|
public const string EnableConsolidatedBilling = "enable-consolidated-billing";
|
2024-04-02 13:21:40 -04:00
|
|
|
|
public const string AC1795_UpdatedSubscriptionStatusSection = "AC-1795_updated-subscription-status-section";
|
2024-04-17 10:09:53 +01:00
|
|
|
|
public const string EnableDeleteProvider = "AC-1218-delete-provider";
|
2024-04-30 12:43:12 -04:00
|
|
|
|
public const string EmailVerification = "email-verification";
|
2024-07-02 17:03:36 -04:00
|
|
|
|
public const string EmailVerificationDisableTimingDelays = "email-verification-disable-timing-delays";
|
2024-05-02 16:37:06 -04:00
|
|
|
|
public const string AnhFcmv1Migration = "anh-fcmv1-migration";
|
2024-05-03 13:16:57 -07:00
|
|
|
|
public const string ExtensionRefresh = "extension-refresh";
|
2024-05-07 12:30:48 -07:00
|
|
|
|
public const string RestrictProviderAccess = "restrict-provider-access";
|
2024-07-10 16:01:26 +02:00
|
|
|
|
public const string PM4154BulkEncryptionService = "PM-4154-bulk-encryption-service";
|
2024-05-14 09:45:50 -04:00
|
|
|
|
public const string VaultBulkManagementAction = "vault-bulk-management-action";
|
2024-05-24 11:20:54 +01:00
|
|
|
|
public const string BulkDeviceApproval = "bulk-device-approval";
|
2024-05-24 16:51:32 +01:00
|
|
|
|
public const string MemberAccessReport = "ac-2059-member-access-report";
|
2024-06-03 09:19:56 -04:00
|
|
|
|
public const string BlockLegacyUsers = "block-legacy-users";
|
2024-06-17 09:52:17 -05:00
|
|
|
|
public const string InlineMenuFieldQualification = "inline-menu-field-qualification";
|
2024-06-25 12:16:53 -04:00
|
|
|
|
public const string TwoFactorComponentRefactor = "two-factor-component-refactor";
|
2024-07-15 12:20:44 -05:00
|
|
|
|
public const string InlineMenuPositioningImprovements = "inline-menu-positioning-improvements";
|
2024-07-09 09:09:19 -04:00
|
|
|
|
public const string AC2828_ProviderPortalMembersPage = "AC-2828_provider-portal-members-page";
|
2024-07-09 11:32:47 -04:00
|
|
|
|
public const string ProviderClientVaultPrivacyBanner = "ac-2833-provider-client-vault-privacy-banner";
|
2024-07-23 15:45:03 -04:00
|
|
|
|
public const string DeviceTrustLogging = "pm-8285-device-trust-logging";
|
2024-07-25 07:51:23 -07:00
|
|
|
|
public const string AuthenticatorTwoFactorToken = "authenticator-2fa-token";
|
2024-07-26 15:55:29 +01:00
|
|
|
|
public const string EnableUpgradePasswordManagerSub = "AC-2708-upgrade-password-manager-sub";
|
2024-07-30 10:19:36 -04:00
|
|
|
|
public const string UnauthenticatedExtensionUIRefresh = "unauth-ui-refresh";
|
2024-02-01 13:21:17 -05:00
|
|
|
|
|
2023-03-10 08:11:11 -05:00
|
|
|
|
public static List<string> GetAllKeys()
|
|
|
|
|
|
{
|
|
|
|
|
|
return typeof(FeatureFlagKeys).GetFields(BindingFlags.Public | BindingFlags.Static | BindingFlags.FlattenHierarchy)
|
|
|
|
|
|
.Where(fi => fi.IsLiteral && !fi.IsInitOnly && fi.FieldType == typeof(string))
|
|
|
|
|
|
.Select(x => (string)x.GetRawConstantValue())
|
|
|
|
|
|
.ToList();
|
|
|
|
|
|
}
|
2023-09-01 07:06:21 -04:00
|
|
|
|
|
|
|
|
|
|
public static Dictionary<string, string> GetLocalOverrideFlagValues()
|
|
|
|
|
|
{
|
|
|
|
|
|
// place overriding values when needed locally (offline), or return null
|
|
|
|
|
|
return new Dictionary<string, string>()
|
|
|
|
|
|
{
|
2024-04-12 21:40:43 +10:00
|
|
|
|
{ DuoRedirect, "true" },
|
2024-07-11 08:38:06 +10:00
|
|
|
|
{ FlexibleCollectionsV1, "true" },
|
|
|
|
|
|
{ BulkDeviceApproval, "true" }
|
2023-09-01 07:06:21 -04:00
|
|
|
|
};
|
|
|
|
|
|
}
|
2023-03-07 13:46:52 -05:00
|
|
|
|
}
|