X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/7183ca1596f6509fe2ef1960e8ca948424294781..1d460a17caf94ddc33610b39a0a11aec1d3905a2:/lib/controller/router/response.go diff --git a/lib/controller/router/response.go b/lib/controller/router/response.go index 6e933fc00e..03cdcf18d2 100644 --- a/lib/controller/router/response.go +++ b/lib/controller/router/response.go @@ -31,6 +31,9 @@ func (rtr *router) responseOptions(opts interface{}) (responseOptions, error) { case *arvados.ListOptions: rOpts.Select = opts.Select rOpts.Count = opts.Count + case *arvados.GroupContentsOptions: + rOpts.Select = opts.Select + rOpts.Count = opts.Count } return rOpts, nil }