1
0
mirror of https://github.com/bitwarden/server synced 2026-01-18 08:23:21 +00:00

add/edit group with collection ids

This commit is contained in:
Kyle Spearrin
2017-05-08 22:14:01 -04:00
parent e996a410dc
commit d166f9cca3
9 changed files with 191 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
CREATE PROCEDURE [dbo].[Group_ReadWithCollectionsById]
@Id UNIQUEIDENTIFIER
AS
BEGIN
SET NOCOUNT ON
EXEC [dbo].[Group_ReadById] @Id
SELECT
[CollectionId]
FROM
[dbo].[CollectionGroup]
WHERE
[GroupId] = @Id
END