mirror of
https://github.com/bitwarden/server
synced 2025-12-06 00:03:34 +00:00
* [PM-17562] Add in-memory cache for event integrations * Fix Sql error * Fix failing test * Add additional tests for new cache service * PR suggestions addressed
12 lines
225 B
Transact-SQL
12 lines
225 B
Transact-SQL
CREATE OR ALTER PROCEDURE [dbo].[OrganizationIntegrationConfigurationDetails_ReadMany]
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON
|
|
|
|
SELECT
|
|
oic.*
|
|
FROM
|
|
[dbo].[OrganizationIntegrationConfigurationDetailsView] oic
|
|
END
|
|
GO
|