mirror of
https://github.com/bitwarden/server
synced 2025-12-15 07:43:54 +00:00
cleanup unused vars
This commit is contained in:
@@ -5,8 +5,6 @@ services:
|
||||
image: microsoft/mssql-server-linux
|
||||
container_name: mssql
|
||||
restart: always
|
||||
env_file:
|
||||
- mssql.env
|
||||
ports:
|
||||
- '1433:1433'
|
||||
|
||||
@@ -24,14 +22,10 @@ services:
|
||||
image: bitwarden/api
|
||||
container_name: api
|
||||
restart: always
|
||||
env_file:
|
||||
- global.env
|
||||
|
||||
identity:
|
||||
image: bitwarden/identity
|
||||
container_name: identity
|
||||
env_file:
|
||||
- global.env
|
||||
|
||||
nginx:
|
||||
image: bitwarden/nginx
|
||||
|
||||
@@ -11,7 +11,6 @@ namespace Bit.Core.Services
|
||||
{
|
||||
public class RelayPushNotificationService : BaseRelayPushNotificationService, IPushNotificationService
|
||||
{
|
||||
private readonly HttpClient _client;
|
||||
private readonly IHttpContextAccessor _httpContextAccessor;
|
||||
|
||||
public RelayPushNotificationService(
|
||||
|
||||
@@ -10,9 +10,6 @@ namespace Bit.Core.Services
|
||||
{
|
||||
public class RelayPushRegistrationService : BaseRelayPushNotificationService, IPushRegistrationService
|
||||
{
|
||||
private dynamic _decodedToken;
|
||||
private DateTime? _nextAuthAttempt = null;
|
||||
|
||||
public RelayPushRegistrationService(GlobalSettings globalSettings)
|
||||
: base(globalSettings)
|
||||
{ }
|
||||
|
||||
Reference in New Issue
Block a user