1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 13:08:17 -05:00

Remove providerUserRepository from currentContext in NotificationsHub. (#1549)

This commit is contained in:
Oscar Hinton 2021-08-30 18:19:46 +02:00 committed by GitHub
parent b5182bf9c8
commit b815813dba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,6 @@
using System;
using System.Threading.Tasks;
using Bit.Core.Context;
using Bit.Core.Repositories;
using Bit.Core.Settings;
using Microsoft.AspNetCore.Authorization;
@ -10,21 +9,18 @@ namespace Bit.Notifications
[Authorize("Application")]
public class NotificationsHub : Microsoft.AspNetCore.SignalR.Hub
{
private readonly IProviderUserRepository _providerUserRepository;
private readonly ConnectionCounter _connectionCounter;
private readonly GlobalSettings _globalSettings;
public NotificationsHub(IProviderUserRepository providerUserRepository,
ConnectionCounter connectionCounter, GlobalSettings globalSettings)
public NotificationsHub(ConnectionCounter connectionCounter, GlobalSettings globalSettings)
{
_providerUserRepository = providerUserRepository;
_connectionCounter = connectionCounter;
_globalSettings = globalSettings;
}
public override async Task OnConnectedAsync()
{
var currentContext = new CurrentContext(_providerUserRepository);
var currentContext = new CurrentContext(null);
await currentContext.BuildAsync(Context.User, _globalSettings);
if (currentContext.Organizations != null)
{
@ -39,7 +35,7 @@ namespace Bit.Notifications
public override async Task OnDisconnectedAsync(Exception exception)
{
var currentContext = new CurrentContext(_providerUserRepository);
var currentContext = new CurrentContext(null);
await currentContext.BuildAsync(Context.User, _globalSettings);
if (currentContext.Organizations != null)
{