mirror of
https://github.com/nextcloud/server.git
synced 2024-12-28 07:58:42 +00:00
e32b335289
Signed-off-by: skjnldsv <skjnldsv@protonmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
23 lines
563 B
TypeScript
23 lines
563 B
TypeScript
/**
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
import type { Capabilities } from '../../apps/files/src/types'
|
|
|
|
export const getCapabilities = (): Capabilities => {
|
|
return {
|
|
files: {
|
|
bigfilechunking: true,
|
|
blacklisted_files: [],
|
|
forbidden_filename_basenames: [],
|
|
forbidden_filename_characters: [],
|
|
forbidden_filename_extensions: [],
|
|
forbidden_filenames: [],
|
|
undelete: true,
|
|
version_deletion: true,
|
|
version_labeling: true,
|
|
versioning: true,
|
|
},
|
|
}
|
|
}
|