|
@@ -30,7 +30,7 @@ On the server, checks are performed to make sure the values are safe, but the ch
|
30
|
30
|
const { type, program } = req.body;
|
31
|
31
|
if (
|
32
|
32
|
typeof type !== "string"
|
33
|
|
- || type.match(/^[a-zA-Z\-/]{3,}$/) === null //<-- Any Alphanumeric(plus dashes) string with length >= 3
|
|
33
|
+ || type.match(/^[a-zA-Z\-/]{3,}$/) === null //<-- Any Alphanumeric(plus dashes and slashes) string with length >= 3
|
34
|
34
|
|| typeof program.name !== "string"
|
35
|
35
|
|| typeof program.code !== "string"
|
36
|
36
|
|| program.code.length > 10000
|