remove some todos

This commit is contained in:
Kyle Spearrin 2019-05-29 23:37:25 -04:00
parent 86d8d64bf6
commit 1c08901698
3 changed files with 0 additions and 4 deletions

View File

@ -89,7 +89,6 @@ namespace Bit.Core.Services
}
_apiService.SetUrls(envUrls);
// TODO: init notifications service
return urls;
}

View File

@ -41,8 +41,6 @@ namespace Bit.Core.Services
public bool PinLocked { get; set; }
public bool FingerprintLocked { get; set; } = true;
// TODO: init timer?
public async Task<bool> IsLockedAsync()
{
var hasKey = await _cryptoService.HasKeyAsync();

View File

@ -53,7 +53,6 @@ namespace Bit.Core.Utilities
// TODO: export service
var auditService = new AuditService(cryptoFunctionService, apiService);
var environmentService = new EnvironmentService(apiService, storageService);
// TODO: notification service
Register<IStateService>("stateService", stateService);
Register<ICryptoFunctionService>("cryptoFunctionService", cryptoFunctionService);