Adhésion hiérarchique à un groupe (groupes imbriqués)

For our running club, I’m coordinating a year-long challenge that has a team component. For each 10-year age-group team, I’m creating a Discourse group so they can be @mentioned and potentially have their own conversations, though I very much doubt anyone will figure that out. So I have seven groups for each of the age-group teams, and I have to update those manually as people register.

I also want to have an uber-group that contains all the people who are participating in the challenge. It would be a LOT easier if I could have the larger Challengers group merely contain the sub-groups for 19-and-under, 20-29, 30-39, and so on. That way I could just manage the sub-groups and have the changes flow through to the uber-group.

Is there (or could there be) a way to do this, or am I stuck having to manually type in every username from the sub-groups? (I think this will be several hundred people all told, and a weekly task.)

6 « J'aime »

You should be same to use Bulk Add to Group, which will save you a lot of typing!

I don’t think we have plans to implement full hierarchical group membership resolution.

2 « J'aime »

I keep being confused by references Bulk Add to Group, since it doesn’t appear in the UI as far as I can tell—the screenshots from the 2015 topic you linked to don’t match with what I see now. Is it just the same as using the Add Members dialog within a group?

And how can I copy a list of members of one group to be able to bulk add to another? The best workflow I can come up with at the moment is to copy the text of the Members page and use a style-savvy grep (in Nisus Writer Pro) to copy the usernames. Doable, but not exactly easy.

1 « J'aime »

There are quite a few references to the “bulk add to group” feature here on Meta, but I don’t see it active anymore at https://discourse.example.org/admin/groups/bulk, just a blank page (I checked a couple different sites where I have admin rights). Do you see anything there @adamengst?

1 « J'aime »

Sorry for the delay—missed the notification. No, I don’t have a page at

https://forum.fingerlakesrunners.org/admin/groups/bulk at all (404), and the main groups page is at FLRC Forum

No mention of Bulk Add anywhere that I can find.

1 « J'aime »

I guess this is a bit of a hidden feature, but you can use the bulk invite feature to add existing users to groups. Just prep a csv with the email address and group as explained in the modal, and upload it. The users will not be emailed.

2 « J'aime »

@tobiaseigen Aha! Do you happen to know if that would handle group updates for existing users if the email address in question already has an account?

Yes. That is precisely what I mean by this:

This feature seems to be doing double duty and we can improve the UI. I will propose something.

3 « J'aime »

Awesome, thanks! Off to LibreOffice Calc I go! :keyboard:

1 « J'aime »

Thanks! That’s getting closer, although I’ll note that keying off email address often works poorly for me because lots of people have multiple addresses, so I have to verify ahead of time whether I’m inviting the one that’s associated with an account or another one that will be confusing (and potentially set them up with a second account).

I don’t know how the underlying foundation works, but it would seem simplest to allow groups to contain references to other groups.

1 « J'aime »

You could always do a user export and then use the exported CSV to create a new list to import back using the bulk invite feature. Sounds like you just need to do this once to get the system set up with your existing users, then manually when new people join or make a change to their age bracket.

Maye there’s a case for custom code to semi-automate this for your community - you could post a request in marketplace if you have a budget.

1 « J'aime »

Good point on the user export—I wasn’t thinking about that as a way to populate the list with accounts to start. I’ll keep noodling on this and see how it works out.

1 « J'aime »

Les groupes hiérarchiques (groupes comme membres de groupes) auraient l’avantage supplémentaire de supprimer automatiquement les membres des groupes hérités.

Pour implémenter une telle fonctionnalité « à la main », vous devriez vous souvenir si une appartenance à un groupe a été héritée d’un groupe hiérarchiquement supérieur ou définie directement.

Pourriez-vous commenter l’utilisation d’un service d’annuaire d’utilisateurs externe (ldap) pour implémenter une fonction de groupe hiérarchique ?

2 « J'aime »

@angus Je me demande si le GroupAssociatedGroup implémente déjà l’intention de ce fil de discussion.

Non, cette fonctionnalité concerne la synchronisation des groupes sur des services externes avec les groupes Discourse, pas les hiérarchies de groupes.

1 « J'aime »

Depuis que j’ai lancé ce fil de discussion, j’ai pensé qu’il serait bon de donner mon avis et de dire que ma demande de groupes hiérarchiques est toujours tout à fait pertinente.

La fonctionnalité d’invitation en masse aux groupes n’entre tout simplement pas en jeu car, dans mon cas, j’ajoute des personnes à des groupes spécifiques basés sur l’âge et à un groupe général qui englobe tous les groupes basés sur l’âge sur une période de 4 mois au fur et à mesure de leur inscription dans un autre système.

Je vais voir si mon développeur peut automatiser le processus cette année, maintenant que je sais à quel point il est fastidieux de le faire manuellement chaque semaine.

1 « J'aime »

@adamengst Des progrès ici ?

Oui, en fait, mon développeur a pu synchroniser les données de Webscorer, que nous utilisons pour l’inscription aux courses, avec les groupes Discourse. Cela nécessite que les noms correspondent, mais il a créé une page d’administration qui montre quand ce n’est pas le cas.

Il n’y a donc pas de hiérarchie, mais nous remplissons plusieurs groupes automatiquement, ce qui élimine le besoin principal que j’avais.

C’est du code open-source, donc je peux probablement le partager si quelqu’un est intéressé à voir comment cela fonctionne.

3 « J'aime »

J’ai également reçu une demande directe pour cela, donc si quelqu’un souhaite examiner le code de @SteveDesmond.ca pour écrire dans les groupes Discourse, il est disponible sur :

Et Steve a dit qu’il était heureux de répondre aux questions à ce sujet.

2 « J'aime »

Voici un aperçu du code spécifique qu’Adam a mentionné précédemment :

  1. (L36) obtenir tous les utilisateurs du système externe
  2. (L37) obtenir tous les utilisateurs de Discourse
  3. (L38-39) obtenir tous les membres des groupes en question (global est le « supergroupe » dans ce cas)
  4. (L46-78) pour chaque utilisateur du système externe, vérifier s’il existe dans Discourse et cartographier les groupes dont il fait déjà partie et auxquels il doit être ajouté
1 « J'aime »