delete unused file

This commit is contained in:
Gabriel Bazán 2015-11-30 09:58:11 -03:00
commit fa7881fcdd

View file

@ -1,12 +0,0 @@
'use strict';
angular.module('copayApp.controllers').controller('securityPreferencesController',
function($scope, profileService) {
var self = this;
var fc = profileService.focusedClient;
self.deleted = false;
if (fc.credentials && !fc.credentials.mnemonicEncrypted && !fc.credentials.mnemonic) {
self.deleted = true;
}
});