Hierarchical group membership (groups inside groups)

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 Likes

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 Likes

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 Like

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 Like

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 Like

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 Likes

@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 Likes

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

1 Like

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 Like

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 Like

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 Like

Hierarchical groups (groups as members of groups) would have the additional advantage of automatically removing members from inherited groups.

To implement such a feature “by hand”, you would have to remember whether a group membership was inherited by a hierarchically higher group or set directly.

Could you comment on using an external user directory service (ldap) to implement a hierarchical group function?

2 Likes

@angus I’m wondering whether the GroupAssociatedGroup already implements this thread’s intention.

No, that feature is concerned with the syncing of groups on external services with Discourse groups, not with group hierarchies.

1 Like

Since I started this thread, I thought I’d just weigh in and say that my request for hierarchical groups is still completely relevant.

The Bulk Invite to Group feature simply doesn’t come into play because in my case, I’m adding people to specific age-based groups and an overall group that encompasses all the age-based groups over a 4-month time frame as they register in another system.

I’ll see if my developer can automate the process this year, now that I know how utterly tedious it is to do by hand on a weekly basis.

1 Like

@adamengst Any progress here?

Yes, in fact my developer was able to sync up data from Webscorer, which we use for race registration, with Discourse groups. It requires that names match, but he built an admin page that shows when they don’t.

So there’s no hierarchy, but we’re populating multiple groups automatically, which removes the main need I had.

It’s open-source code so I can probably share it if anyone’s interested in seeing how it works.

3 Likes

I got a direct request for this too, so if anyone would like to look at @SteveDesmond.ca’s code for writing into Discourse groups, it’s available at:

And Steve said he’s happy to answer questions about it.

2 Likes

Here’s an outline for the specific code Adam mentioned previously:

  1. (L36) get all users in the external system
  2. (L37) get all users in Discourse
  3. (L38-39) get all members of the groups in question (global is the “supergroup” in this case)
  4. (L46-78) for each user in the external system, check if they exist in Discourse, and map which groups they’re already part of and need to be added to
1 Like