diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2024-01-30 17:20:03 +0100 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2024-02-06 17:43:35 +0100 |
commit | 6cf4fe19a021cab9f96ac23e32e52af2ee32218b (patch) | |
tree | d1d7a89d02997bf50c28bd8226dc05560bbadd8f /apps/files_sharing/src | |
parent | 414a4caa658032a7cf08c6527232282bc4b631e0 (diff) | |
download | nextcloud-server-6cf4fe19a021cab9f96ac23e32e52af2ee32218b.tar.gz nextcloud-server-6cf4fe19a021cab9f96ac23e32e52af2ee32218b.zip |
fix(files): add mount root property and adjust delete wording
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_sharing/src')
-rw-r--r-- | apps/files_sharing/src/init.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/files_sharing/src/init.ts b/apps/files_sharing/src/init.ts index 734f888cb7d..7699fcff9af 100644 --- a/apps/files_sharing/src/init.ts +++ b/apps/files_sharing/src/init.ts @@ -20,6 +20,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ +import { registerDavProperty } from '@nextcloud/files' import registerSharingViews from './views/shares' import './actions/acceptShareAction' @@ -29,3 +30,7 @@ import './actions/restoreShareAction' import './actions/sharingStatusAction' registerSharingViews() + +registerDavProperty('nc:share-attributes', { nc: 'http://nextcloud.org/ns' }) +registerDavProperty('oc:share-types', { oc: 'http://owncloud.org/ns' }) +registerDavProperty('ocs:share-permissions', { ocs: 'http://open-collaboration-services.org/ns' }) |