mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Fix bulk fingerprints (#1442)
* Fix fingerprint phrases in bulk confirm modal * Fix indentation
This commit is contained in:
parent
2c9a5bb4ab
commit
908e1504af
@ -219,7 +219,7 @@ namespace Bit.Api.Controllers
|
|||||||
}
|
}
|
||||||
|
|
||||||
var result = await _organizationUserRepository.GetManyPublicKeysByOrganizationUserAsync(orgGuidId, model.Ids);
|
var result = await _organizationUserRepository.GetManyPublicKeysByOrganizationUserAsync(orgGuidId, model.Ids);
|
||||||
var responses = result.Select(r => new OrganizationUserPublicKeyResponseModel(r.Id, r.PublicKey)).ToList();
|
var responses = result.Select(r => new OrganizationUserPublicKeyResponseModel(r.Id, r.UserId, r.PublicKey)).ToList();
|
||||||
return new ListResponseModel<OrganizationUserPublicKeyResponseModel>(responses);
|
return new ListResponseModel<OrganizationUserPublicKeyResponseModel>(responses);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -111,14 +111,17 @@ namespace Bit.Core.Models.Api
|
|||||||
|
|
||||||
public class OrganizationUserPublicKeyResponseModel : ResponseModel
|
public class OrganizationUserPublicKeyResponseModel : ResponseModel
|
||||||
{
|
{
|
||||||
public OrganizationUserPublicKeyResponseModel(Guid id, string key,
|
public OrganizationUserPublicKeyResponseModel(Guid id, Guid userId,
|
||||||
string obj = "organizationUserPublicKeyResponseModel") : base(obj)
|
string key, string obj = "organizationUserPublicKeyResponseModel") :
|
||||||
|
base(obj)
|
||||||
{
|
{
|
||||||
Id = id;
|
Id = id;
|
||||||
|
UserId = userId;
|
||||||
Key = key;
|
Key = key;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Guid Id { get; set; }
|
public Guid Id { get; set; }
|
||||||
|
public Guid UserId { get; set; }
|
||||||
public string Key { get; set; }
|
public string Key { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@ namespace Bit.Core.Models.Data
|
|||||||
public class OrganizationUserPublicKey
|
public class OrganizationUserPublicKey
|
||||||
{
|
{
|
||||||
public Guid Id { get; set; }
|
public Guid Id { get; set; }
|
||||||
|
public Guid UserId { get; set; }
|
||||||
public string PublicKey { get; set; }
|
public string PublicKey { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,7 @@ BEGIN
|
|||||||
|
|
||||||
SELECT
|
SELECT
|
||||||
OU.[Id],
|
OU.[Id],
|
||||||
|
OU.[UserId],
|
||||||
U.[PublicKey]
|
U.[PublicKey]
|
||||||
FROM
|
FROM
|
||||||
@OrganizationUserIds OUIDs
|
@OrganizationUserIds OUIDs
|
||||||
|
@ -42,9 +42,9 @@ BEGIN
|
|||||||
U.[PublicKey]
|
U.[PublicKey]
|
||||||
FROM
|
FROM
|
||||||
@OrganizationUserIds OUIDs
|
@OrganizationUserIds OUIDs
|
||||||
INNER JOIN
|
INNER JOIN
|
||||||
[dbo].[OrganizationUser] OU ON OUIDs.Id = OU.Id AND OU.[Status] = 1 -- Accepted
|
[dbo].[OrganizationUser] OU ON OUIDs.Id = OU.Id AND OU.[Status] = 1 -- Accepted
|
||||||
INNER JOIN
|
INNER JOIN
|
||||||
[dbo].[User] U ON OU.UserId = U.Id
|
[dbo].[User] U ON OU.UserId = U.Id
|
||||||
WHERE
|
WHERE
|
||||||
OU.OrganizationId = @OrganizationId
|
OU.OrganizationId = @OrganizationId
|
||||||
|
26
util/Migrator/DbScripts/2021-07-07_00_FixBulkConfirm.sql
Normal file
26
util/Migrator/DbScripts/2021-07-07_00_FixBulkConfirm.sql
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
IF OBJECT_ID('[dbo].[User_ReadPublicKeysByOrganizationUserIds]') IS NOT NULL
|
||||||
|
BEGIN
|
||||||
|
DROP PROCEDURE [dbo].[User_ReadPublicKeysByOrganizationUserIds]
|
||||||
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
CREATE PROCEDURE [dbo].[User_ReadPublicKeysByOrganizationUserIds]
|
||||||
|
@OrganizationId UNIQUEIDENTIFIER,
|
||||||
|
@OrganizationUserIds [dbo].[GuidIdArray] READONLY
|
||||||
|
AS
|
||||||
|
BEGIN
|
||||||
|
SET NOCOUNT ON
|
||||||
|
|
||||||
|
SELECT
|
||||||
|
OU.[Id],
|
||||||
|
OU.[UserId],
|
||||||
|
U.[PublicKey]
|
||||||
|
FROM
|
||||||
|
@OrganizationUserIds OUIDs
|
||||||
|
INNER JOIN
|
||||||
|
[dbo].[OrganizationUser] OU ON OUIDs.Id = OU.Id AND OU.[Status] = 1 -- Accepted
|
||||||
|
INNER JOIN
|
||||||
|
[dbo].[User] U ON OU.UserId = U.Id
|
||||||
|
WHERE
|
||||||
|
OU.OrganizationId = @OrganizationId
|
||||||
|
END
|
Loading…
x
Reference in New Issue
Block a user