Skip to content

Commit

Permalink
Merge branch 'main' into billing/PM-15179/add-existing-orgs-provider-…
Browse files Browse the repository at this point in the history
…portal
  • Loading branch information
amorask-bitwarden committed Feb 3, 2025
2 parents 80e36f2 + fe983af commit 7c43521
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Core/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ public static class FeatureFlagKeys
public const string SingleTapPasskeyCreation = "single-tap-passkey-creation";
public const string SingleTapPasskeyAuthentication = "single-tap-passkey-authentication";
public const string EnableRiskInsightsNotifications = "enable-risk-insights-notifications";
public const string EnablePMAuthenticatorSync = "enable-pm-bwa-sync";
public const string P15179_AddExistingOrgsFromProviderPortal = "PM-15179-add-existing-orgs-from-provider-portal";

public static List<string> GetAllKeys()
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
-- Refresh Views

IF OBJECT_ID('[dbo].[OrganizationView]') IS NOT NULL
BEGIN
EXECUTE sp_refreshview N'[dbo].[OrganizationView]';
END
GO

0 comments on commit 7c43521

Please sign in to comment.