mirror of
https://github.com/nextcloud/passman.git
synced 2024-11-10 17:27:40 +08:00
Fix CredentialService not defined
This commit is contained in:
parent
b1b4770943
commit
77888059cb
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', 'FileService', function ($http, EncryptService, VaultService, FileService) {
|
||||
.service('CredentialService', ['$http', 'EncryptService', 'VaultService', 'FileService', 'CredentialService' function ($http, EncryptService, VaultService, FileService, CredentialService) {
|
||||
var credential = {
|
||||
'credential_id': null,
|
||||
'guid': null,
|
||||
|
|
Loading…
Reference in a new issue