mirror of
https://github.com/bitwarden/server
synced 2025-12-10 05:13:48 +00:00
* [PM-17562] Add GET endpoints for event integrations * Default to null for Service * Respond to PR Feedback
30 lines
589 B
Transact-SQL
30 lines
589 B
Transact-SQL
CREATE OR ALTER PROCEDURE [dbo].[OrganizationIntegration_ReadManyByOrganizationId]
|
|
@OrganizationId UNIQUEIDENTIFIER
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON
|
|
|
|
SELECT
|
|
*
|
|
FROM
|
|
[dbo].[OrganizationIntegrationView]
|
|
WHERE
|
|
[OrganizationId] = @OrganizationId
|
|
END
|
|
GO
|
|
|
|
CREATE OR ALTER PROCEDURE [dbo].[OrganizationIntegrationConfiguration_ReadManyByOrganizationIntegrationId]
|
|
@OrganizationIntegrationId UNIQUEIDENTIFIER
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON
|
|
|
|
SELECT
|
|
*
|
|
FROM
|
|
[dbo].[OrganizationIntegrationConfigurationView]
|
|
WHERE
|
|
[OrganizationIntegrationId] = @OrganizationIntegrationId
|
|
END
|
|
GO
|