Page MenuHomePhabricator

Allow users to filter bot edits
Closed, ResolvedPublic

Description

We track whether each link event was made by a bot user or not. We could easily add another filter to searches to remove these edits.

  • Add a new BooleanField to common/forms.py for bot edits
  • In common/helpers.py filter the queryset on this field in filter_queryset()
  • In organisation_detail.html and program_detail.html, add the relevant form HTML
  • Write a test for this functionality