You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
762 B
30 lines
762 B
--Update stored procedure to include LimitCollectionCreationDeletion property |
|
CREATE OR ALTER PROCEDURE [dbo].[Organization_ReadAbilities] |
|
AS |
|
BEGIN |
|
SET NOCOUNT ON |
|
|
|
SELECT |
|
[Id], |
|
[UseEvents], |
|
[Use2fa], |
|
CASE |
|
WHEN [Use2fa] = 1 AND [TwoFactorProviders] IS NOT NULL AND [TwoFactorProviders] != '{}' THEN |
|
1 |
|
ELSE |
|
0 |
|
END AS [Using2fa], |
|
[UsersGetPremium], |
|
[UseCustomPermissions], |
|
[UseSso], |
|
[UseKeyConnector], |
|
[UseScim], |
|
[UseResetPassword], |
|
[UsePolicies], |
|
[Enabled], |
|
[LimitCollectionCreationDeletion], |
|
[AllowAdminAccessToAllCollectionItems] |
|
FROM |
|
[dbo].[Organization] |
|
END |
|
GO
|
|
|