mirror of
https://github.com/bitwarden/server
synced 2026-01-20 09:23:28 +00:00
apis for managing collection users
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
CREATE PROCEDURE [dbo].[CollectionUser_ReadByCollectionId]
|
||||
@CollectionId UNIQUEIDENTIFIER
|
||||
AS
|
||||
BEGIN
|
||||
SET NOCOUNT ON
|
||||
|
||||
SELECT
|
||||
[OrganizationUserId] [Id],
|
||||
[ReadOnly]
|
||||
FROM
|
||||
[dbo].[CollectionUser]
|
||||
WHERE
|
||||
[CollectionId] = @CollectionId
|
||||
END
|
||||
Reference in New Issue
Block a user