mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
feat: Add forbidden_filename_characters to JSConfig for use in frontend libraries
Add the filename restrictions to our JS config so we can create a common frontend library function to check filename validity (de-duplicate code). Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
parent
0e4aa47044
commit
dd4901d689
1 changed files with 1 additions and 0 deletions
|
|
@ -169,6 +169,7 @@ class JSConfigHelper {
|
|||
$config = [
|
||||
'auto_logout' => $this->config->getSystemValue('auto_logout', false),
|
||||
'blacklist_files_regex' => FileInfo::BLACKLIST_FILES_REGEX,
|
||||
'forbidden_filename_characters' => Util::getForbiddenFileNameChars(),
|
||||
'loglevel' => $this->config->getSystemValue('loglevel_frontend',
|
||||
$this->config->getSystemValue('loglevel', ILogger::WARN)
|
||||
),
|
||||
|
|
|
|||
Loading…
Reference in a new issue