mirror of
https://github.com/discourse/discourse.git
synced 2025-06-24 22:11:34 +08:00

**Description** As part of a customer request, we have added the option to search groups by ID when doing API calls. However, in doing so we have decided to correct the confusion around the group's routes. Previously the route would look like `g/:id` while taking the `name` of the group as the param. For example, when getting a group the route would be like this: ``` GET /g/admins ``` This would make the code in the controller seem as if it was handling the group IDs instead of names. With these changes, this should be addressed.