I think this question gets into the weeds of Rails, but here goes:
I’m trying to figure out how to display the owner or owners of each group on the group index page (equivalent to this page).
My starting point is the group model, which implies to me that the group owners trait is not directly attached to a group (as opposed to, say,“full_name”, which I can see is part of the group schema at the bottom of that link).
So it’s clear that I can’t call group.owners like I can call group.full_name. Similarly, I don’t think I can get the info back from the API by retrieving info about a group, because “owners” doesn’t seem to be one of the returned values.
How would I get back the owners of a group to display that info?