See who is watching a topic

Hello Aidan :slight_smile:

Yes, I don’t think this feature has already been considered, it seems to be of a rare usefulness.
However, you can achieve it with a Data Explorer query such as:

-- [params]
-- topic_id :topic_id

SELECT user_id, topic_id, notification_level
FROM topic_users
WHERE topic_id = :topic_id
ORDER BY id DESC

4 Likes