aboutsummaryrefslogtreecommitdiffstats
path: root/manage.py (unfollow)
Commit message (Collapse)AuthorLines
2019-10-25Write tests for the future date validatorGravatar Akarys42-0/+12
2019-10-24Create an OffensiveMessage modelGravatar Akarys42-1/+156
This model will be used to store message that triggered a filter and that will be deleted one week after it was sent.
2019-10-22Set SECRET_KEY to constant in debug modeGravatar Sebastiaan Zeeff-1/+1
The SECRET_KEY in debug mode was auto-generated each time the config file was loaded. This had the unwanted side-effect of requiring testers to login again on the site as the SECRET_KEY had changed during the reload process. This commit resolves that by turning it into a constant. Since having a constant secret results in the linting error `S105`, I have added a specific `noqa` ignore for that.