blob: 5a2b93c6ea36da36e4462d077b1d07030cee4ac9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import { addNewFileMenuEntry, registerDavProperty } from '@nextcloud/files'
import { registerAccountFilter } from './files_filters/AccountFilter'
import { entry as newFileRequest } from './files_newMenu/newFileRequest'
import registerNoteToRecipient from './files_headers/noteToRecipient'
import registerSharingViews from './files_views/shares'
import './files_actions/acceptShareAction'
import './files_actions/openInFilesAction'
import './files_actions/rejectShareAction'
import './files_actions/restoreShareAction'
import './files_actions/sharingStatusAction'
registerSharingViews()
addNewFileMenuEntry(newFileRequest)
registerDavProperty('nc:note', { nc: 'http://nextcloud.org/ns' })
registerDavProperty('nc:sharees', { nc: 'http://nextcloud.org/ns' })
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' })
registerAccountFilter()
// Add "note to recipient" message
registerNoteToRecipient()
|