diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2021-12-02 18:32:57 +0100 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2022-01-08 10:14:05 +0100 |
commit | 74b980310852a0b406fa9d073870f92c409d5444 (patch) | |
tree | 055cbdf57886077bf3a6ea476813deedb54064e0 /apps/files_sharing/src/components/SharingEntry.vue | |
parent | 85bc8513557f5ff37fc283d53893d4cb77ec7c3b (diff) | |
download | nextcloud-server-74b980310852a0b406fa9d073870f92c409d5444.tar.gz nextcloud-server-74b980310852a0b406fa9d073870f92c409d5444.zip |
Eslint fix
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_sharing/src/components/SharingEntry.vue')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntry.vue | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/apps/files_sharing/src/components/SharingEntry.vue b/apps/files_sharing/src/components/SharingEntry.vue index ac7df24162c..8d610333834 100644 --- a/apps/files_sharing/src/components/SharingEntry.vue +++ b/apps/files_sharing/src/components/SharingEntry.vue @@ -232,7 +232,7 @@ export default { /** * Can the sharer set whether the sharee can edit the file ? * - * @returns {boolean} + * @return {boolean} */ canSetEdit() { // If the owner revoked the permission after the resharer granted it @@ -244,7 +244,7 @@ export default { /** * Can the sharer set whether the sharee can create the file ? * - * @returns {boolean} + * @return {boolean} */ canSetCreate() { // If the owner revoked the permission after the resharer granted it @@ -256,7 +256,7 @@ export default { /** * Can the sharer set whether the sharee can delete the file ? * - * @returns {boolean} + * @return {boolean} */ canSetDelete() { // If the owner revoked the permission after the resharer granted it @@ -268,7 +268,7 @@ export default { /** * Can the sharer set whether the sharee can reshare the file ? * - * @returns {boolean} + * @return {boolean} */ canSetReshare() { // If the owner revoked the permission after the resharer granted it @@ -337,7 +337,8 @@ export default { /** * Is the current share a folder ? - * @returns {boolean} + * + * @return {boolean} */ isFolder() { return this.fileInfo.type === 'dir' @@ -345,7 +346,8 @@ export default { /** * Does the current share have an expiration date - * @returns {boolean} + * + * @return {boolean} */ hasExpirationDate: { get() { @@ -371,7 +373,7 @@ export default { }, /** - * @returns {bool} + * @return {bool} */ hasStatus() { if (this.share.type !== this.SHARE_TYPES.SHARE_TYPE_USER) { |