See #890: assign report to moderator on resolution

environments/review-front-927-m6zslj/deployments/2768
Eliot Berriot 2019-09-12 11:07:42 +02:00
rodzic 05e36c745c
commit daad6a5dc4
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: DD6965E2476E5C27
2 zmienionych plików z 22 dodań i 0 usunięć

Wyświetl plik

@ -488,6 +488,14 @@ class ManageReportViewSet(
required_scope = "instance:reports"
ordering_fields = ["id", "creation_date", "handled_date"]
def perform_update(self, serializer):
is_handled = serializer.instance.is_handled
if not is_handled and serializer.validated_data.get("is_handled") is True:
# report was resolved, we assign to the mod making the request
serializer.save(assigned_to=self.request.user.actor)
else:
serializer.save()
class ManageNoteViewSet(
mixins.ListModelMixin,

Wyświetl plik

@ -495,3 +495,17 @@ def test_report_update(factories, superuser_api_client):
assert response.status_code == 200
report.refresh_from_db()
assert report.is_handled is True
def test_report_update_is_handled_true_assigns(factories, superuser_api_client):
actor = superuser_api_client.user.create_actor()
report = factories["moderation.Report"]()
url = reverse(
"api:v1:manage:moderation:reports-detail", kwargs={"uuid": report.uuid}
)
response = superuser_api_client.patch(url, {"is_handled": True})
assert response.status_code == 200
report.refresh_from_db()
assert report.is_handled is True
assert report.assigned_to == actor