aboutsummaryrefslogtreecommitdiffstats
path: root/manage.py (unfollow)
Commit message (Collapse)AuthorLines
2020-07-27Rename AllowDenyList to FilterListGravatar Leon Sandøy-48/+47
2020-07-19Minor changes to tests, use subTest.Gravatar Leon Sandøy-9/+4
2020-07-19Document the get_types endpoint.Gravatar Leon Sandøy-0/+14
2020-07-19Relock with a newer version of pipenvGravatar Leon Sandøy-10/+39
2020-07-19Simplify AllowDenyListType names.Gravatar Leon Sandøy-4/+4
GUILD_INVITE_ID -> GUILD_INVITE WORD_WATCHLIST -> FILTER_TOKEN
2020-07-19Add another AllowDenyList field, 'comment'.Gravatar Leon Sandøy-1/+9
This will be used to describe or justify the entries in the blacklist or whitelist, for example for the guild name in the case of guild invite IDs, so that we have some context when we're displaying the list. https://github.com/python-discord/site/issues/305
2020-07-17Add an endpoint for getting AllowDenyList types.Gravatar Leon Sandøy-0/+16
https://github.com/python-discord/site/issues/305
2020-07-16100% branch coverage for account.pyGravatar Leon Sandøy-4/+9
https://github.com/python-discord/site/issues/305
2020-07-16100% coverage for account.pyGravatar Leon Sandøy-29/+30
https://github.com/python-discord/site/issues/305
2020-07-16Rename AllowList to AllowDenyList.Gravatar Leon Sandøy-55/+48
https://github.com/python-discord/site/issues/305
2020-07-16Fix some broken tests.Gravatar Leon Sandøy-8/+7
The test_utils_account.py tests were never running, because the folder they were in had no __init__.py file. The test_models.py file was failing because it had an outdated import of the ModelReprMixin, which has moved to a new file. https://github.com/python-discord/site/issues/305
2020-07-16Improve some docstrings.Gravatar Leon Sandøy-6/+26
https://github.com/python-discord/site/issues/305