mirror of
https://github.com/bitwarden/server
synced 2026-01-02 08:33:48 +00:00
added groups apis
This commit is contained in:
13
src/Sql/dbo/Stored Procedures/Group_ReadById.sql
Normal file
13
src/Sql/dbo/Stored Procedures/Group_ReadById.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
CREATE PROCEDURE [dbo].[Group_ReadById]
|
||||
@Id UNIQUEIDENTIFIER
|
||||
AS
|
||||
BEGIN
|
||||
SET NOCOUNT ON
|
||||
|
||||
SELECT
|
||||
*
|
||||
FROM
|
||||
[dbo].[GroupView]
|
||||
WHERE
|
||||
[Id] = @Id
|
||||
END
|
||||
Reference in New Issue
Block a user