diff options
author | Julius Härtl <jus@bitgrid.net> | 2020-12-08 13:01:29 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-12-09 13:20:24 +0100 |
commit | 8131965b740377cad5c64910ea76070cbf81868a (patch) | |
tree | 4a20c79b51c3231e41e0ab470c98db139678aa61 /apps/files_sharing/src/models/Share.js | |
parent | f1a54cb6aad8dcb9c98f0070ba4d74b4941aefe3 (diff) | |
download | nextcloud-server-8131965b740377cad5c64910ea76070cbf81868a.tar.gz nextcloud-server-8131965b740377cad5c64910ea76070cbf81868a.zip |
Allow share results to have a detailed description and share entries to have a link
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/files_sharing/src/models/Share.js')
-rw-r--r-- | apps/files_sharing/src/models/Share.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/files_sharing/src/models/Share.js b/apps/files_sharing/src/models/Share.js index 07f74652a44..d36484f064a 100644 --- a/apps/files_sharing/src/models/Share.js +++ b/apps/files_sharing/src/models/Share.js @@ -151,6 +151,17 @@ export default class Share { } /** + * Get the share with entity link + * + * @returns {string} + * @readonly + * @memberof Share + */ + get shareWithLink() { + return this.#share.share_with_link + } + + /** * Get the share with avatar if any * * @returns {string} |