mirror of
https://github.com/nextcloud/passman.git
synced 2025-02-26 00:14:44 +08:00
Fix FileService not defined
This commit is contained in:
parent
686acdc394
commit
b1b4770943
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@
|
|||
* Service in the passmanApp.
|
||||
*/
|
||||
angular.module('passmanApp')
|
||||
.service('CredentialService', ['$http', 'EncryptService', 'VaultService', function ($http, EncryptService, VaultService) {
|
||||
.service('CredentialService', ['$http', 'EncryptService', 'VaultService', 'FileService', function ($http, EncryptService, VaultService, FileService) {
|
||||
var credential = {
|
||||
'credential_id': null,
|
||||
'guid': null,
|
||||
|
|
Loading…
Reference in a new issue