@Summary Get group members by organization and group name @ID get-group-members-by-organization-and-group-name @Security CoderSessionToken @Produce json @Tags Enterprise @Param organization path string true "Organization ID" format(uuid) @Param groupName path string true "Group name" @Param q query
(rw http.ResponseWriter, r *http.Request)
| 454 | // @Success 200 {object} codersdk.GroupMembersResponse |
| 455 | // @Router /api/v2/organizations/{organization}/groups/{groupName}/members [get] |
| 456 | func (api *API) groupMembersByOrganization(rw http.ResponseWriter, r *http.Request) { |
| 457 | api.groupMembers(rw, r) |
| 458 | } |
| 459 | |
| 460 | // @Summary Get group members by group ID |
| 461 | // @ID get-group-members-by-group-id |
nothing calls this directly
no test coverage detected