1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-25 12:45:18 +01:00

PM-10600: Id typos

This commit is contained in:
Maciej Zieniuk 2024-10-22 14:42:27 +01:00
parent 7e0c0675ff
commit 4173fa8e81
No known key found for this signature in database
GPG Key ID: 9CACE59F1272ACD9
4 changed files with 8 additions and 8 deletions

View File

@ -172,8 +172,8 @@ public class AzureQueuePushNotificationService : IPushNotificationService
{
Id = notification.Id,
Global = notification.Global,
UserId = notification.Id,
OrganizationId = notification.Id,
UserId = notification.UserId,
OrganizationId = notification.OrganizationId,
ClientType = notification.ClientType,
RevisionDate = notification.RevisionDate
};

View File

@ -200,8 +200,8 @@ public class NotificationHubPushNotificationService : IPushNotificationService
{
Id = notification.Id,
Global = notification.Global,
UserId = notification.Id,
OrganizationId = notification.Id,
UserId = notification.UserId,
OrganizationId = notification.OrganizationId,
ClientType = notification.ClientType,
RevisionDate = notification.RevisionDate
};

View File

@ -179,8 +179,8 @@ public class NotificationsApiPushNotificationService : BaseIdentityClientService
{
Id = notification.Id,
Global = notification.Global,
UserId = notification.Id,
OrganizationId = notification.Id,
UserId = notification.UserId,
OrganizationId = notification.OrganizationId,
ClientType = notification.ClientType,
RevisionDate = notification.RevisionDate
};

View File

@ -195,8 +195,8 @@ public class RelayPushNotificationService : BaseIdentityClientService, IPushNoti
{
Id = notification.Id,
Global = notification.Global,
UserId = notification.Id,
OrganizationId = notification.Id,
UserId = notification.UserId,
OrganizationId = notification.OrganizationId,
ClientType = notification.ClientType,
RevisionDate = notification.RevisionDate
};