mirror of
https://github.com/bitwarden/server.git
synced 2025-07-19 08:30:59 -05: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
|