| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2019-10-25 | Write tests for the future date validator | -0/+12 | ||
| 2019-10-24 | Create an OffensiveMessage model | -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-22 | Set SECRET_KEY to constant in debug mode | -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. | ||||