Commit message (Collapse) | Author | Lines | ||
---|---|---|---|---|
2020-10-07 | add check for insufficient data in update method of UserListSerializer | -0/+5 | ||
2020-10-07 | Document changes made to UserListSerializer in UserViewSet | -0/+3 | ||
2020-10-07 | use more efficient code | -4/+6 | ||
2020-10-06 | refactor tests to use updated changes and add tests for UserListPagination | -2/+64 | ||
2020-10-06 | overhaul create method to ignore conflicts and raise error when duplicates ↵ | -6/+7 | ||
present in request data. Raising NotFound exception instead of ValidatoinError in update method | ||||
2020-10-06 | Update docstring of UserViewSet and correct function annotation on ↵ | -4/+5 | ||
UserListPagination | ||||
2020-10-05 | Change test case to use updated code | -1/+1 | ||
2020-10-05 | return next and previous page numbers in paginator instead of links | -11/+30 | ||
2020-10-05 | raise validation error for user not found in UserListSerializer | -6/+11 | ||
2020-10-03 | Display no prompt to users who have already authenticated | -3/+4 | ||
2020-10-02 | Only request the identify scope with Discord on OAuth2 login | -0/+7 | ||
2020-10-01 | Update rule 5 | -2/+3 | ||
2020-09-26 | Add "Welcome to Python Discord" video to index | -3/+1 | ||
2020-09-22 | optimize bulk update endpoint by using Model.objects.bulk_update() method | -1/+7 | ||
The Model.objects.bulk_update() method greatly reduces the number of SQL queries by updating all required instances in 1 query. | ||||
2020-09-20 | Remove delete permission for bot settings admin. | -0/+5 | ||
I'm unable to see any cases where this would be wanted, and instead accidental deletion would result in the system possibly breaking, as we are unable to add the setting again to replace it if it got removed. The name has also set to read only in item view, to prevent renames, effectively doing the same thing as deleting it. | ||||
2020-09-20 | Add migrations for nomination and doc link model changes. | -0/+93 | ||
2020-09-20 | Change documentation link model to order by package. | -0/+5 | ||
2020-09-20 | Change Infraction admin to use fieldsets for better grouping of info. | -9/+5 | ||
2020-09-20 | Allow Nomination end_reason to have a blank value for validation. | -1/+2 | ||
Without `blank=True`, admin page editable forms could not be saved if no content was in the end_reason input. | ||||
2020-09-20 | Change UserTopRoleFilter to UserRoleFilter. | -2/+2 | ||
Filter checks for general role membership instead of only those who have the selected role as top role. Noticed during development that we'd not be able to filter to show all Helpers otherwise, as some Helpers have different top roles such as Core Dev that wouldn't give immediately obvious behaviour to user expectations. | ||||
2020-09-20 | Test username property formatting for user model. | -1/+5 | ||
2020-09-19 | Update user model in DeletedMessagesLogURLTests. | -1/+0 | ||
`avatar_hash` is no longer a field stored in the database. | ||||
2020-09-19 | Remove noqa from DeletedMessagesLogURLTests setup. | -1/+1 | ||
2020-09-18 | Don't allow expiry to be editable, due to pending bot tasks unsyncing | -0/+1 | ||
2020-09-18 | Declutter Infraction admin list, add actor list filter. | -5/+25 | ||
2020-09-18 | Add DocumentationLink and BotSetting Admin models. | -4/+28 | ||
2020-09-18 | Update DeletedMessage and LogEntry Admin models, add verbose names for Message | -78/+95 | ||
2020-09-18 | Update Nomination Admin model, add actor filter. | -10/+37 | ||
2020-09-18 | Add Used filter for OffTopicChannelName Admin model. | -0/+1 | ||
2020-09-18 | Add OffensiveMessage Admin model. | -4/+30 | ||
2020-09-18 | Update Role ModelAdmin to past changes, cleanup formatting. | -17/+31 | ||
2020-09-18 | Fix format-style not supporting X hex casting like f-strings. | -2/+2 | ||
2020-09-18 | Add return types and docstrings for new user admin changes. | -14/+26 | ||
2020-09-18 | Add verbose names for user fields that need capitalisation fixes. | -2/+4 | ||
2020-09-18 | Update UserAdmin to use new role values, pretty colours. | -32/+50 | ||
2020-09-18 | Use admin.register decorators. | -8/+8 | ||
2020-09-18 | Remove TagAdmin model as Tags were removed from site. | -23/+0 | ||
2020-09-12 | Fix a broken test for nomination reason. | -5/+2 | ||
We no longer return 400 if a reason is missing. | ||||
2020-09-11 | Allow blank/null input to the nomination reason. | -1/+21 | ||
We are lowering the threshold for nomination. By allowing the users to make a nomination without a reason might make this feature more attractive amongst members of staff. | ||||
2020-09-03 | Update landing page. | -2/+2 | ||
Replace flake8-annotations with metricity. |