Add an icon when the file is shared by mail

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/2371/head
Joas Schilling 10 years ago committed by Roeland Jago Douma
parent 73007c401e
commit 09e5e38591
No known key found for this signature in database
GPG Key ID: F941078878347C0C
  1. 2
      apps/files_sharing/js/share.js

@ -114,6 +114,8 @@
shareType = parseInt(shareType, 10);
if (shareType === OC.Share.SHARE_TYPE_LINK) {
hasLink = true;
} else if (shareType === OC.Share.SHARE_TYPE_EMAIL) {
hasLink = true;
} else if (shareType === OC.Share.SHARE_TYPE_USER) {
hasShares = true;
} else if (shareType === OC.Share.SHARE_TYPE_GROUP) {

Loading…
Cancel
Save