mirror of
https://github.com/bitwarden/server
synced 2025-12-29 06:33:43 +00:00
org user details apis
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
CREATE VIEW [dbo].[OrganizationUserOrganizationDetailsView]
|
||||
AS
|
||||
SELECT
|
||||
OU.[UserId],
|
||||
OU.[OrganizationId],
|
||||
O.[Name],
|
||||
OU.[Key],
|
||||
OU.[Status]
|
||||
FROM
|
||||
[dbo].[OrganizationUser] OU
|
||||
INNER JOIN
|
||||
[dbo].[Organization] O ON O.[Id] = OU.[OrganizationId]
|
||||
Reference in New Issue
Block a user