1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 00:33:44 +00:00

rename loginService to cipherService

This commit is contained in:
Kyle Spearrin
2017-10-16 23:11:32 -04:00
parent e7f7c52247
commit 6722793087
17 changed files with 108 additions and 108 deletions

View File

@@ -1,7 +1,7 @@
angular
.module('bit.vault')
.controller('vaultController', function ($scope, $rootScope, loginService, folderService, $q, $state, $stateParams, toastr,
.controller('vaultController', function ($scope, $rootScope, cipherService, folderService, $q, $state, $stateParams, toastr,
syncService, utilsService, $analytics, i18nService, stateService, $timeout, $window) {
var stateKey = 'vault',
state = stateService.getState(stateKey) || {};
@@ -50,7 +50,7 @@
});
promises.push(folderPromise);
var cipherPromise = loginService.getAllDecrypted().then(function (ciphers) {
var cipherPromise = cipherService.getAllDecrypted().then(function (ciphers) {
decCiphers = ciphers;
});
promises.push(cipherPromise);