mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
Remove providerUserRepository from currentContext in NotificationsHub. (#1549)
This commit is contained in:
parent
b5182bf9c8
commit
b815813dba
@ -1,7 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Bit.Core.Context;
|
using Bit.Core.Context;
|
||||||
using Bit.Core.Repositories;
|
|
||||||
using Bit.Core.Settings;
|
using Bit.Core.Settings;
|
||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Authorization;
|
||||||
|
|
||||||
@ -10,21 +9,18 @@ namespace Bit.Notifications
|
|||||||
[Authorize("Application")]
|
[Authorize("Application")]
|
||||||
public class NotificationsHub : Microsoft.AspNetCore.SignalR.Hub
|
public class NotificationsHub : Microsoft.AspNetCore.SignalR.Hub
|
||||||
{
|
{
|
||||||
private readonly IProviderUserRepository _providerUserRepository;
|
|
||||||
private readonly ConnectionCounter _connectionCounter;
|
private readonly ConnectionCounter _connectionCounter;
|
||||||
private readonly GlobalSettings _globalSettings;
|
private readonly GlobalSettings _globalSettings;
|
||||||
|
|
||||||
public NotificationsHub(IProviderUserRepository providerUserRepository,
|
public NotificationsHub(ConnectionCounter connectionCounter, GlobalSettings globalSettings)
|
||||||
ConnectionCounter connectionCounter, GlobalSettings globalSettings)
|
|
||||||
{
|
{
|
||||||
_providerUserRepository = providerUserRepository;
|
|
||||||
_connectionCounter = connectionCounter;
|
_connectionCounter = connectionCounter;
|
||||||
_globalSettings = globalSettings;
|
_globalSettings = globalSettings;
|
||||||
}
|
}
|
||||||
|
|
||||||
public override async Task OnConnectedAsync()
|
public override async Task OnConnectedAsync()
|
||||||
{
|
{
|
||||||
var currentContext = new CurrentContext(_providerUserRepository);
|
var currentContext = new CurrentContext(null);
|
||||||
await currentContext.BuildAsync(Context.User, _globalSettings);
|
await currentContext.BuildAsync(Context.User, _globalSettings);
|
||||||
if (currentContext.Organizations != null)
|
if (currentContext.Organizations != null)
|
||||||
{
|
{
|
||||||
@ -39,7 +35,7 @@ namespace Bit.Notifications
|
|||||||
|
|
||||||
public override async Task OnDisconnectedAsync(Exception exception)
|
public override async Task OnDisconnectedAsync(Exception exception)
|
||||||
{
|
{
|
||||||
var currentContext = new CurrentContext(_providerUserRepository);
|
var currentContext = new CurrentContext(null);
|
||||||
await currentContext.BuildAsync(Context.User, _globalSettings);
|
await currentContext.BuildAsync(Context.User, _globalSettings);
|
||||||
if (currentContext.Organizations != null)
|
if (currentContext.Organizations != null)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user