mirror of
https://github.com/bitwarden/server
synced 2026-01-05 01:53:17 +00:00
* Add support for Emergency Access * Add migration script * Review comments * Ensure grantor has premium when inviting new grantees. * Resolve review comments * Remove two factor references
14 lines
400 B
Transact-SQL
14 lines
400 B
Transact-SQL
CREATE VIEW [dbo].[EmergencyAccessDetailsView]
|
|
AS
|
|
SELECT
|
|
EA.*,
|
|
GranteeU.[Name] GranteeName,
|
|
ISNULL(GranteeU.[Email], EA.[Email]) GranteeEmail,
|
|
GrantorU.[Name] GrantorName,
|
|
GrantorU.[Email] GrantorEmail
|
|
FROM
|
|
[dbo].[EmergencyAccess] EA
|
|
LEFT JOIN
|
|
[dbo].[User] GranteeU ON GranteeU.[Id] = EA.[GranteeId]
|
|
LEFT JOIN
|
|
[dbo].[User] GrantorU ON GrantorU.[Id] = EA.[GrantorId] |