#1471: WebDAV url validation

This commit is contained in:
antelle 2020-04-23 18:39:59 +02:00
parent 908510ff0b
commit 243c962667
No known key found for this signature in database
GPG Key ID: 094A2F2D6136A4EE
2 changed files with 9 additions and 1 deletions

View File

@ -13,7 +13,14 @@ class StorageWebDav extends StorageBase {
getOpenConfig() {
return {
fields: [
{ id: 'path', title: 'openUrl', desc: 'openUrlDesc', type: 'text', required: true },
{
id: 'path',
title: 'openUrl',
desc: 'openUrlDesc',
type: 'text',
required: true,
pattern: '^https:'
},
{
id: 'user',
title: 'openUser',

View File

@ -4,6 +4,7 @@ Release notes
`+` #557: Argon2 speed improvements in desktop apps
`+` #1400: auto-apply tag when creating new entry in tag view
`+` #1342: hint that the data will be stored in unencrypted form after exporting
`*` #1471: WebDAV url validation, only HTTPS is allowed
`-` fix #1463: copying the original url instead of adding https:
##### v1.14.0 (2020-04-18)