GroupsController#autocomplete uses GroupsFinder but the latter has been removed in CE
See https://gitlab.com/gitlab-org/gitlab-ee/blob/master/app/controllers/groups_controller.rb#L83. This method doesn't exist in CE either.
Do not update/delete: Banner broadcast message test data
Do not update/delete: Notification broadcast message test data
See https://gitlab.com/gitlab-org/gitlab-ee/blob/master/app/controllers/groups_controller.rb#L83. This method doesn't exist in CE either.
Not sure what the best course of action here would be, is the autocomplete
method even needed?
cc @vsizov
@yorickpeterse it should be rewritten to not use GroupsFinder. Just Group.all
weird that it is not covered with tests.
groups = GroupsFinder.new.execute(current_user).search(params[:search]).limit(params[:per_page])
The fix is
groups = Group.search(params[:search]).limit(params[:per_page])
mentioned in merge request !118 (merged)
Status changed to closed by commit eb5f4c40
mentioned in commit eb5f4c40
mentioned in commit 9eb72609
Mentioned in commit 9eb72609