Do not display the usernames that hold a specific badge

Certainly :slight_smile:

Each time you do any action in Discourse, you can check the network tab of your browser dev tools to see the query that was made.

For example, here I save the profile of a user:

You see the request URL, mentioning the username, and the type of request (PUT).
On the Payload tab, you see the relevant data:

image

The custom fields are listed as user_fields[X] where X is the number of the custom field.


Edit: I saw that you figured it out on dev, so, just to crosslink… :slight_smile:

1 Like