aboutsummaryrefslogtreecommitdiffhomepage
path: root/server
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-04-30 16:32:24 +0200
committerChocobozzz <chocobozzz@cpy.re>2020-05-04 16:21:39 +0200
commit5644f9b0351c71601312b13c49d89b0ce05c74e3 (patch)
treeab31bae90584dfdb995c7aa6141face42175103b /server
parentbc90883f1a5e9c4ecb76ae358734b85be515af7f (diff)
downloadPeerTube-5644f9b0351c71601312b13c49d89b0ce05c74e3.tar.gz
PeerTube-5644f9b0351c71601312b13c49d89b0ce05c74e3.tar.zst
PeerTube-5644f9b0351c71601312b13c49d89b0ce05c74e3.zip
Accept numbers in plugin names
Diffstat (limited to 'server')
-rw-r--r--server/helpers/custom-validators/plugins.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/helpers/custom-validators/plugins.ts b/server/helpers/custom-validators/plugins.ts
index 5a4531f72..d2fc03936 100644
--- a/server/helpers/custom-validators/plugins.ts
+++ b/server/helpers/custom-validators/plugins.ts
@@ -14,7 +14,7 @@ function isPluginTypeValid (value: any) {
14function isPluginNameValid (value: string) { 14function isPluginNameValid (value: string) {
15 return exists(value) && 15 return exists(value) &&
16 validator.isLength(value, PLUGINS_CONSTRAINTS_FIELDS.NAME) && 16 validator.isLength(value, PLUGINS_CONSTRAINTS_FIELDS.NAME) &&
17 validator.matches(value, /^[a-z-]+$/) 17 validator.matches(value, /^[a-z-0-9]+$/)
18} 18}
19 19
20function isNpmPluginNameValid (value: string) { 20function isNpmPluginNameValid (value: string) {