mirror of
https://github.com/nextcloud/passman.git
synced 2025-10-16 16:36:08 +08:00
Missing ;
This commit is contained in:
parent
3ccd26e75b
commit
538a996892
1 changed files with 3 additions and 1 deletions
|
@ -229,6 +229,8 @@ angular.module('passmanApp')
|
|||
});
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
$scope.sharing_complete = true;
|
||||
$scope.applyShare = function () {
|
||||
$scope.sharing_complete = false;
|
||||
|
@ -253,7 +255,7 @@ angular.module('passmanApp')
|
|||
expire_views: $scope.share_settings.linkSharing.settings.expire_views
|
||||
};
|
||||
ShareService.createPublicSharedCredential(shareObj).then(function () {
|
||||
var hash = window.btoa($scope.storedCredential.guid + '<::>' + enc_key)
|
||||
var hash = window.btoa($scope.storedCredential.guid + '<::>' + enc_key);
|
||||
$scope.share_link = $location.$$protocol + '://' + $location.$$host + OC.generateUrl('apps/passman/share/public#') + hash;
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue