1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-21 02:33:46 +00:00

[AC-2485] Add redirects to clients components based on FF and provider status (#8839)

* Add provider clients redirects based on FF and provider status

* Fixing broken test
This commit is contained in:
Alex Morask
2024-04-25 15:27:06 -04:00
committed by GitHub
parent e516eec200
commit cbf7c292f3
12 changed files with 287 additions and 283 deletions

View File

@@ -7,3 +7,4 @@ export * from "./provider-type.enum";
export * from "./provider-user-status-type.enum";
export * from "./provider-user-type.enum";
export * from "./scim-provider-type.enum";
export * from "./provider-status-type.enum";

View File

@@ -0,0 +1,5 @@
export enum ProviderStatusType {
Pending = 0,
Created = 1,
Billable = 2,
}