Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cmd/smd/smd-api.go
Original file line number Diff line number Diff line change
Expand Up @@ -5128,6 +5128,7 @@ func (s *SmD) doGroupMembersPost(w http.ResponseWriter, r *http.Request) {
// already exist in the group, they are added to the group. Any xnames that
// exist in the group that are not in the payload are removed from the group.
func (s *SmD) doGroupMembersPut(w http.ResponseWriter, r *http.Request) {
defer base.DrainAndCloseRequestBody(r)
var membersIn sm.MemberPutBody

label := sm.NormalizeGroupField(chi.URLParam(r, "group_label"))
Expand Down
Loading