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); _apiService.SetUrls(envUrls);
// TODO: init notifications service
return urls; return urls;
} }

View file

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

View file

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