List of Topics in Slow Mode

Is there a way to see a list of topics currently in ‘slow mode’?

Alternatively, is there a way to see a log of all moderator actions? The ‘Moderator Activity’ report only shows a summary of certain activities group by moderator.

The staff action logs? You can find them at /admin/logs/staff_action_logs and also filter them for ‘set topic slow mode’.

I would use the data explorer to get a list of all topics where slow mode is active.

SELECT id as topic_id, title, category_id, slow_mode_seconds
FROM topics
WHERE slow_mode_seconds > 0

Returns a table like this

4 Likes