summaryrefslogtreecommitdiff
path: root/app/controllers/groups_controller.rb
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-03-14 12:37:28 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-03-14 12:37:28 +0200
commitf4f36f78ddb3d720ad7ae89ecea300c9f48775c7 (patch)
treebfd6e900aaf154971da34b6918bfe5f304ba375e /app/controllers/groups_controller.rb
parentcc1dd624aab2f5f85ec121506884965f5353411d (diff)
downloadgitlab-ce-f4f36f78ddb3d720ad7ae89ecea300c9f48775c7.tar.gz
Remove separate search page from group
Diffstat (limited to 'app/controllers/groups_controller.rb')
-rw-r--r--app/controllers/groups_controller.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/app/controllers/groups_controller.rb b/app/controllers/groups_controller.rb
index cbb024bb78f..bdf3567fef2 100644
--- a/app/controllers/groups_controller.rb
+++ b/app/controllers/groups_controller.rb
@@ -59,15 +59,6 @@ class GroupsController < ApplicationController
end
end
- def search
- result = SearchContext.new(project_ids, params).execute
-
- @projects = result[:projects]
- @merge_requests = result[:merge_requests]
- @issues = result[:issues]
- @wiki_pages = result[:wiki_pages]
- end
-
def people
@project = group.projects.find(params[:project_id]) if params[:project_id]
@users = @project ? @project.users : group.users