mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
17 lines
316 B
Transact-SQL
17 lines
316 B
Transact-SQL
CREATE PROCEDURE [dbo].[Collection_ReadWithGroupsById]
|
|
@Id UNIQUEIDENTIFIER
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON
|
|
|
|
EXEC [dbo].[Collection_ReadById] @Id
|
|
|
|
SELECT
|
|
[GroupId] [Id],
|
|
[ReadOnly],
|
|
[HidePasswords]
|
|
FROM
|
|
[dbo].[CollectionGroup]
|
|
WHERE
|
|
[CollectionId] = @Id
|
|
END |