Il nostro forum è riservato ai membri paganti della nostra organizzazione, quindi lo spam non sembra essere un problema. Purtroppo, a causa dell’attivazione automatica del livello di fiducia predefinito dopo 50 utenti, al momento abbiamo alcuni utenti con livello di fiducia 0.
Esiste un modo per trovare gli utenti con livello di fiducia 0 e promuoverli al livello di fiducia 1? Ho notato che gli utenti con livello di fiducia 1 appaiono anche nel gruppo del livello di fiducia 0, quindi tutti fanno parte di quel gruppo. Grazie!
How many users are we talking about? You can see users who have only Trust Level 1 from the admin report /admin/users/list/newuser. This does not include users with TL1 or higher. From here you can manually up the user’s trust levels. You are correct that all users on the site technically have TL0, even if they also have a greater trust level. If a lot, a rails command is your best bet.
You should also make sure to change the site setting default trust level if you want all users to have TL1.
Thanks! We only had about 7 users at level 0, so it was easy to upgrade them manually. We’ve also set our default trust level to 1, and may even bump it to 2 if users are running into posting limits. I’ll look into the rails commands if we go that route.
Hi,
I used users.update_all(trust_level: 2) on some trust level 1 users. The users are now trust level 2:
But don’t belong to the related group:
Will they be put inside this group automatically later? Is there some sidekiq task to be executed?
What if we decrease a user trust level from command line (lvl 4 -> lvl 2)?
I figured it out.
The sidekiq task which triggers the trust level groups population is EnsureDbConsistency.
After updating users trust levels from command line (either gaining or losing trust levels), EnsureDbConsistency will move users in and out from these groups.