e-valuation / EvaP

a university course evaluation system written in Python using Django
Other
95 stars 146 forks source link

Disable DATA_UPLOAD_MAX_NUMBER_FIELDS #2163

Closed janno42 closed 2 months ago

janno42 commented 2 months ago

In evaluations forms we can have large numbers of participants. If this number exceeds 1000 (default for settings.DATA_UPLOAD_MAX_NUMBER_FIELDS), a SuspiciousOperation is raised.

We don't really need this check but want to support large numbers of participants. This PR disables the check by changing the setting to None.