check only permission from link-share to decide if public upload is enabled or disabled
This commit is contained in:
parent
2e79aab0ce
commit
d6771502f2
|
@ -177,7 +177,9 @@ OC.Share={
|
||||||
if (allowPublicUploadStatus) {
|
if (allowPublicUploadStatus) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
if (value.share_type === OC.Share.SHARE_TYPE_LINK) {
|
||||||
allowPublicUploadStatus = (value.permissions & OC.PERMISSION_CREATE) ? true : false;
|
allowPublicUploadStatus = (value.permissions & OC.PERMISSION_CREATE) ? true : false;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
html += '<input id="shareWith" type="text" placeholder="'+t('core', 'Share with')+'" />';
|
html += '<input id="shareWith" type="text" placeholder="'+t('core', 'Share with')+'" />';
|
||||||
|
|
Loading…
Reference in New Issue