mirror of
https://github.com/bitwarden/server.git
synced 2025-05-03 18:52:22 -05:00

* Extract Import-Api endpoints into separate controller Moved ciphers/import and ciphers/import-organization into new ImportController Paths have been kept intact for now (no changes on clients needed) Moved request-models used for import into tools-subfolder * Update CODEOWNERS for team-tools-dev * Move HibpController (reports) to tools * Moving files related to Send * Moving files related to ReferenceEvent * Removed unneeded newline
13 lines
183 B
Transact-SQL
13 lines
183 B
Transact-SQL
CREATE PROCEDURE [dbo].[Send_ReadById]
|
|
@Id UNIQUEIDENTIFIER
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON
|
|
|
|
SELECT
|
|
*
|
|
FROM
|
|
[dbo].[SendView]
|
|
WHERE
|
|
[Id] = @Id
|
|
END |