X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ef9107221d53f19bf848d3dca0b570f468519550..c884807d0bf8c32bb220ba382c97a455ade4bd0a:/lib/controller/router/router.go diff --git a/lib/controller/router/router.go b/lib/controller/router/router.go index 250f3cb45b..47082197a0 100644 --- a/lib/controller/router/router.go +++ b/lib/controller/router/router.go @@ -282,6 +282,13 @@ func (rtr *router) addRoutes() { return rtr.fed.UserList(ctx, *opts.(*arvados.ListOptions)) }, }, + { + arvados.EndpointUserBatchUpdate, + func() interface{} { return &arvados.UserBatchUpdateOptions{} }, + func(ctx context.Context, opts interface{}) (interface{}, error) { + return rtr.fed.UserBatchUpdate(ctx, *opts.(*arvados.UserBatchUpdateOptions)) + }, + }, { arvados.EndpointUserDelete, func() interface{} { return &arvados.DeleteOptions{} },