| Commit message (Collapse) | Author | Age | Lines | |
|---|---|---|---|---|
| * | Fix multiple leafs for migration graph. | 2020-07-29 | -1/+1 | |
| | | ||||
| * | Merge branch 'master' into whitelist_system | 2020-07-29 | -3/+80 | |
| |\ | ||||
| | * | Merge pull request #370 from python-discord/role-reminders | 2020-07-20 | -3/+80 | |
| | |\ | | | | | | | Add mentions field to Reminders model | |||
| | | * | Fix misleading documentation | 2020-07-19 | -1/+1 | |
| | | | | ||||
| | | * | Use literal integers for mentions ID in test | 2020-07-19 | -14/+2 | |
| | | | | | | | | | | | | | | | | Since the mentions field stores static IDs and not foreign keys, there is no need to create the objects for the test. | |||
| | | * | Merge migrations | 2020-07-16 | -0/+14 | |
| | | | | ||||
| | | * | Merge branch 'master' of github.com:python-discord/site into role-reminders | 2020-07-16 | -42/+158 | |
| | | |\ | | |/ | |/| | ||||
| | | * | Add mentions field to valid data test | 2020-07-16 | -1/+14 | |
| | | | | ||||
| | | * | Document more undocumented stuff | 2020-07-16 | -2/+6 | |
| | | | | ||||
| | | * | Document PATCH for reminders | 2020-07-16 | -0/+16 | |
| | | | | ||||
| | | * | Document POSTing mentions in ReminderViewSet | 2020-07-16 | -0/+1 | |
| | | | | ||||
| | | * | Add migration for the mentions field in the Reminder model | 2020-07-16 | -0/+20 | |
| | | | | ||||
| | | * | Document mentions in ReminderViewSet | 2020-07-16 | -0/+5 | |
| | | | | ||||
| | | * | Return mentions from ReminderSerializer | 2020-07-16 | -1/+3 | |
| | | | | ||||
| | | * | Add mentions field to Reminder model | 2020-07-16 | -0/+14 | |
| | | | | ||||
| * | | | Add a test for checking duplicates. | 2020-07-29 | -0/+5 | |
| | | | | ||||
| * | | | Handle unique validator in DRF, not Django. | 2020-07-29 | -15/+15 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | I was handling this in a Django vanilla kind of way, which was causing the constraint to return a 500 instead of a 400. This changes the approach to use the DRF way, and makes it return 400. It doesn't actually change the way anything behaves, other than returning the right status code. | |||
| * | | | Rename AllowDenyList to FilterList | 2020-07-27 | -48/+47 | |
| | | | | ||||
| * | | | Minor changes to tests, use subTest. | 2020-07-19 | -9/+4 | |
| | | | | ||||
| * | | | Document the get_types endpoint. | 2020-07-19 | -0/+14 | |
| | | | | ||||
| * | | | Relock with a newer version of pipenv | 2020-07-19 | -10/+39 | |
| | | | | ||||
| * | | | Simplify AllowDenyListType names. | 2020-07-19 | -4/+4 | |
| | | | | | | | | | | | | | | | | GUILD_INVITE_ID -> GUILD_INVITE WORD_WATCHLIST -> FILTER_TOKEN | |||
| * | | | Add another AllowDenyList field, 'comment'. | 2020-07-19 | -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 | |||
| * | | | Add an endpoint for getting AllowDenyList types. | 2020-07-17 | -0/+16 | |
| | | | | | | | | | | | | | https://github.com/python-discord/site/issues/305 | |||
| * | | | Merge branch 'master' into whitelist_system | 2020-07-16 | -1/+1 | |
| |\| | | ||||
| | * | | Bump jQuery version | 2020-07-15 | -1/+1 | |
| | | | | | | | | | | | | | | | | The Django wiki updated the jQuery version, so our reference needs to be updated too. Otherwise, we will get a 404 for the script. | |||
| * | | | 100% branch coverage for account.py | 2020-07-16 | -4/+9 | |
| | | | | | | | | | | | | | https://github.com/python-discord/site/issues/305 | |||
| * | | | 100% coverage for account.py | 2020-07-16 | -29/+30 | |
| | | | | | | | | | | | | | https://github.com/python-discord/site/issues/305 | |||
| * | | | Rename AllowList to AllowDenyList. | 2020-07-16 | -55/+48 | |
| | | | | | | | | | | | | | https://github.com/python-discord/site/issues/305 | |||
| * | | | Fix some broken tests. | 2020-07-16 | -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 | |||
| * | | | Improve some docstrings. | 2020-07-16 | -6/+26 | |
| | | | | | | | | | | | | | https://github.com/python-discord/site/issues/305 | |||
| * | | | Add tests for the AllowList model. | 2020-07-16 | -0/+104 | |
| | | | | | | | | | | | | | https://github.com/python-discord/site/issues/305 | |||
| * | | | Fix a bug in an old migration. | 2020-07-16 | -2/+2 | |
| | | | | | | | | | | | | | https://github.com/python-discord/site/issues/305 | |||
| * | | | Return id from the AllowListSerializer. | 2020-07-15 | -8/+15 | |
| | | | | | | | | | | | | | https://github.com/python-discord/site/issues/305 | |||
| * | | | Add a UniqueConstraint to prevent duplicates. | 2020-07-15 | -0/+21 | |
| | | | | | | | | | | | | | https://github.com/python-discord/site/issues/305 | |||
| * | | | Add a migration for the new AllowList model. | 2020-07-15 | -0/+29 | |
| | | | | | | | | | | | | | https://github.com/python-discord/site/issues/305 | |||
| * | | | Set up url forwarding for the viewset. | 2020-07-15 | -44/+24 | |
| | | | | | | | | | | | | | https://github.com/python-discord/site/issues/305 | |||
| * | | | Minor fixes for imports and __init__ files. | 2020-07-15 | -12/+13 | |
| | | | | | | | | | | | | | https://github.com/python-discord/site/issues/305 | |||
| * | | | Allowlist viewset. | 2020-07-15 | -0/+54 | |
| | | | | | | | | | | | | | https://github.com/python-discord/site/issues/305 | |||
| * | | | Merge branch 'master' into whitelist_system | 2020-07-15 | -294/+354 | |
| |\| | | ||||
| | * | | Merge pull request #346 from python-discord/feat/deps/344/django-3.0 | 2020-07-15 | -41/+157 | |
| | |\ \ | | |/ | |/| | Update to Django 3.0 | |||
| | | * | Merge remote-tracking branch 'origin/master' into feat/deps/344/django-3.0 | 2020-07-14 | -46/+9 | |
| | | |\ | | |/ | |/| | ||||
| | * | | Merge pull request #368 from python-discord/remove_django_crispy_bulma | 2020-07-15 | -262/+206 | |
| | |\ \ | | | | | | | | | Removes django-crispy-bulma as a dependency. | |||
| | | * | | Fix linting issues caused by refactor. | 2020-07-15 | -1/+2 | |
| | | | | | ||||
| | | * | | Removes django_crispy_forms dependency, too. | 2020-07-15 | -40/+7 | |
| | | | | | ||||
| | | * | | Removes django_crispy_bulma dependency. | 2020-07-14 | -227/+203 | |
| | |/ / | ||||
| | | * | Allow empty list for user roles | 2020-07-14 | -0/+22 | |
| | | | | | | | | | | | | | | | | This is the same issue as 145beb37fcb4fa2f487f18b234dd72bc4e10c279. See that commit for more information. | |||
| | | * | Merge migrations | 2020-07-14 | -0/+14 | |
| | | | | ||||
| | | * | Update dependency pins | 2020-07-14 | -14/+32 | |
| | | | | | | | | | | | | | | | | | | | * Use release tag for django-crispy-bulma. This will yet again be changed once it's released on PyPI. * Use PyPI release for wiki | |||
| | | * | Merge branch 'master' into feat/deps/344/django-3.0 | 2020-07-14 | -364/+515 | |
| | | |\ | | |/ | |/| | ||||