mirror of
https://github.com/bitwarden/server
synced 2026-01-02 08:33:48 +00:00
added user orgs to claims
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
CREATE PROCEDURE [dbo].[OrganizationUser_ReadByUserId]
|
||||
@UserId UNIQUEIDENTIFIER
|
||||
AS
|
||||
BEGIN
|
||||
SET NOCOUNT ON
|
||||
|
||||
SELECT
|
||||
*
|
||||
FROM
|
||||
[dbo].[OrganizationUserView]
|
||||
WHERE
|
||||
[UserId] = @UserId
|
||||
END
|
||||
Reference in New Issue
Block a user