mirror of
https://github.com/bitwarden/server.git
synced 2025-07-06 18:42:49 -05:00
app cache with org ability checks on events
This commit is contained in:
@ -223,5 +223,6 @@
|
||||
<Build Include="dbo\Stored Procedures\Event_ReadPageByOrganizationId.sql" />
|
||||
<Build Include="dbo\Stored Procedures\Event_ReadPageByCipherId.sql" />
|
||||
<Build Include="dbo\Stored Procedures\Event_ReadPageByOrganizationIdActingUserId.sql" />
|
||||
<Build Include="dbo\Stored Procedures\Organization_ReadAbilities.sql" />
|
||||
</ItemGroup>
|
||||
</Project>
|
12
src/Sql/dbo/Stored Procedures/Organization_ReadAbilities.sql
Normal file
12
src/Sql/dbo/Stored Procedures/Organization_ReadAbilities.sql
Normal file
@ -0,0 +1,12 @@
|
||||
CREATE PROCEDURE [dbo].[Organization_ReadAbilities]
|
||||
AS
|
||||
BEGIN
|
||||
SET NOCOUNT ON
|
||||
|
||||
SELECT
|
||||
[Id],
|
||||
[UseEvents],
|
||||
[Enabled]
|
||||
FROM
|
||||
[dbo].[Organization]
|
||||
END
|
Reference in New Issue
Block a user