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>
pull/45374/head
Ferdinand Thiessen 2 weeks ago
parent 0e4aa47044
commit dd4901d689
No known key found for this signature in database
GPG Key ID: 45FAE7268762B400

@ -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…
Cancel
Save