1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-16 00:14:34 +02:00

Desktop: Security: Make attachment and file links safer (#10250)

This commit is contained in:
Henry Heino
2024-04-03 10:57:52 -07:00
committed by GitHub
parent 7caed19a32
commit 8dc75efc4c
8 changed files with 308 additions and 5 deletions

View File

@ -1559,6 +1559,15 @@ class Setting extends BaseModel {
isGlobal: true,
},
'linking.extraAllowedExtensions': {
value: [],
type: SettingItemType.Array,
public: false,
appTypes: [AppType.Desktop],
label: () => 'Additional file types that can be opened without confirmation.',
storage: SettingStorage.File,
},
'net.customCertificates': {
value: '',
type: SettingItemType.String,