mirror of
https://github.com/bitwarden/server
synced 2025-12-11 05:43:35 +00:00
[PM-11345] Add SCIM to Teams Plan (#4924)
* Add SCIM to Teams * Robert's feedback * Feedback
This commit is contained in:
@@ -24,6 +24,7 @@ public record TeamsPlan : Plan
|
|||||||
Has2fa = true;
|
Has2fa = true;
|
||||||
HasApi = true;
|
HasApi = true;
|
||||||
UsersGetPremium = true;
|
UsersGetPremium = true;
|
||||||
|
HasScim = true;
|
||||||
|
|
||||||
UpgradeSortOrder = 3;
|
UpgradeSortOrder = 3;
|
||||||
DisplaySortOrder = 3;
|
DisplaySortOrder = 3;
|
||||||
|
|||||||
13
util/Migrator/DbScripts/2024-10-22_00_AddSCIMToTeamsPlan.sql
Normal file
13
util/Migrator/DbScripts/2024-10-22_00_AddSCIMToTeamsPlan.sql
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
SET DEADLOCK_PRIORITY HIGH
|
||||||
|
GO
|
||||||
|
UPDATE
|
||||||
|
[dbo].[Organization]
|
||||||
|
SET
|
||||||
|
[UseScim] = 1
|
||||||
|
WHERE
|
||||||
|
[PlanType] IN (
|
||||||
|
17, -- Teams (Monthly)
|
||||||
|
18 -- Teams (Annually)
|
||||||
|
)
|
||||||
|
SET DEADLOCK_PRIORITY NORMAL
|
||||||
|
GO
|
||||||
Reference in New Issue
Block a user