How do I see who is TL1 (and not TL2)?

I think at the moment that’s impossible in the UI. Turns out it is, in a roundabout way – Discourse secrets

A data explorer query like this should work:

-- [params]
-- int :trust_level = 0

SELECT id as user_id from users where trust_level = :trust_level
1 Like