mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 15:45:19 +08:00
17 lines
302 B
MySQL
17 lines
302 B
MySQL
|
|
CREATE OR ALTER PROCEDURE [dbo].[OrganizationIntegration_ReadByOrganizationIdType]
|
||
|
|
@OrganizationId UNIQUEIDENTIFIER,
|
||
|
|
@Type SMALLINT
|
||
|
|
AS
|
||
|
|
BEGIN
|
||
|
|
SET NOCOUNT ON
|
||
|
|
|
||
|
|
SELECT
|
||
|
|
*
|
||
|
|
FROM
|
||
|
|
[dbo].[OrganizationIntegrationView]
|
||
|
|
WHERE
|
||
|
|
[OrganizationId] = @OrganizationId
|
||
|
|
AND [Type] = @Type
|
||
|
|
END
|
||
|
|
GO
|