Make more questions non-mandatory

This commit is contained in:
TEC 2022-10-02 16:17:33 +08:00
parent e4b06e5c07
commit 9359f31800
Signed by: tec
SSH Key Fingerprint: SHA256:eobz41Mnm0/iYWBvWThftS0ElEs1ftBr6jamutnXc/A
1 changed files with 4 additions and 2 deletions

View File

@ -129,7 +129,8 @@ the questions you see now will not neccesarily be in the final survey.",
"Could you list some of your favourite packages? (comma-seperated)";
validators = [t -> if length(split(t, ',')) > 10
"That's a lot of packages. Surely you can cut that down to a top 10?"
end, wordlimit(30), charlimit(200)]),
end, wordlimit(30), charlimit(200)],
mandatory=false),
MultiSelect(:package_contact_method,
"If you wish to contact the package maintainer(s), how do you do so?",
["Mailing list", "Email", "GitHub", :other]),
@ -158,7 +159,8 @@ the questions you see now will not neccesarily be in the final survey.",
"Wariness of the review process",
"Bad prior experience",
"FSF paperwork (for GNU ELPA)" => "FSF paperwork",
:other]),
:other],
mandatory=false),
TextArea(:package_submission,
"If you write packages, how you you decide which repositories to submit it to (if any)?",
mandatory=false),