mirror of
https://github.com/bitwarden/server
synced 2025-12-25 04:33:26 +00:00
[PM-17563] Add missing TaskId and HubHelper for PendingSecurityTasks (#5591)
* [PM-17563] Add case for PushType.PendingSecurityTasks * [PM-17563] Add missing TaskId property to NotificationStatusDetails and NotificationResponseModel * [PM-17563] Add migration script to re-create NotificationStatusDetailsView to include TaskId column * [PM-17563] Select explicit columns for NotificationStatusDetailsView and fix migration script
This commit is contained in:
@@ -1,10 +1,20 @@
|
||||
CREATE VIEW [dbo].[NotificationStatusDetailsView]
|
||||
AS
|
||||
SELECT
|
||||
N.*,
|
||||
NS.UserId AS NotificationStatusUserId,
|
||||
NS.ReadDate,
|
||||
NS.DeletedDate
|
||||
N.[Id],
|
||||
N.[Priority],
|
||||
N.[Global],
|
||||
N.[ClientType],
|
||||
N.[UserId],
|
||||
N.[OrganizationId],
|
||||
N.[Title],
|
||||
N.[Body],
|
||||
N.[CreationDate],
|
||||
N.[RevisionDate],
|
||||
N.[TaskId],
|
||||
NS.[UserId] AS [NotificationStatusUserId],
|
||||
NS.[ReadDate],
|
||||
NS.[DeletedDate]
|
||||
FROM
|
||||
[dbo].[Notification] AS N
|
||||
LEFT JOIN
|
||||
|
||||
Reference in New Issue
Block a user