17119: when the count: none option is supplied, the itemsAvailable field
[arvados.git] / lib / controller / router / response.go
index 6e933fc00ed291483eb93279497c48f2d4365618..03cdcf18d27e4fcf3df814ab3c652c3479456165 100644 (file)
@@ -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
 }