Public participant list after registration

Hi,
is there a way “under the hood” to make public all the participants of a conference?

This because after the registration procedure Indico doesn’t allow this, as explained here: Privacy - Learning Indico

I forgot this before enabling the registrations…

Yes, you can do that via indico shell:

regform = RegistrationForm.get(123)  # put the registration form ID instead of 123
regform.publish_registrations_public = 2
regform.publish_registrations_participants = 2
db.session.commit()

0 = always hidden, 1 = use consent, 2 = always visible

Thank you,
it worked like a charm!

Cristiano.