1
0
mirror of https://github.com/bitwarden/server synced 2026-01-02 00:23:40 +00:00

Flag for org users to access all subvaults

This commit is contained in:
Kyle Spearrin
2017-04-20 23:50:12 -04:00
parent aa5b79df2b
commit b0b6cac97b
26 changed files with 139 additions and 106 deletions

View File

@@ -6,6 +6,7 @@
@Key VARCHAR(MAX),
@Status TINYINT,
@Type TINYINT,
@AccessAllSubvaults BIT,
@CreationDate DATETIME2(7),
@RevisionDate DATETIME2(7)
AS
@@ -21,6 +22,7 @@ BEGIN
[Key] = @Key,
[Status] = @Status,
[Type] = @Type,
[AccessAllSubvaults] = @AccessAllSubvaults,
[CreationDate] = @CreationDate,
[RevisionDate] = @RevisionDate
WHERE