diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-01-22 17:30:18 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-01-28 15:25:34 +0100 |
commit | b063ddb05b71988d92fe140ca003ad58301cfcc8 (patch) | |
tree | febf5d75ec2f5c4d4759d0ab2ad12523ea66a0a6 /core/js/share.js | |
parent | 476720ada9f0997bdef7407f8ef15c2c50866011 (diff) | |
download | nextcloud-server-b063ddb05b71988d92fe140ca003ad58301cfcc8.tar.gz nextcloud-server-b063ddb05b71988d92fe140ca003ad58301cfcc8.zip |
Share dialog use OCS API
Diffstat (limited to 'core/js/share.js')
-rw-r--r-- | core/js/share.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/core/js/share.js b/core/js/share.js index e14e19a2543..9baa34d9bb7 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -387,13 +387,6 @@ OC.Share = _.extend(OC.Share || {}, { } }); }, - setPermissions:function(itemType, itemSource, shareType, shareWith, permissions) { - $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'setPermissions', itemType: itemType, itemSource: itemSource, shareType: shareType, shareWith: shareWith, permissions: permissions }, function(result) { - if (!result || result.status !== 'success') { - OC.dialogs.alert(t('core', 'Error while changing permissions'), t('core', 'Error')); - } - }); - }, showDropDown:function(itemType, itemSource, appendTo, link, possiblePermissions, filename) { var configModel = new OC.Share.ShareConfigModel(); var attributes = {itemType: itemType, itemSource: itemSource, possiblePermissions: possiblePermissions}; |