diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb
index 6d7a9d8c8..b4effb2db 100644
--- a/app/controllers/users_controller.rb
+++ b/app/controllers/users_controller.rb
@@ -20,6 +20,10 @@ class UsersController < ApplicationController
respond_with(@users)
end
+ def search
+ @search = User.search(params[:search])
+ end
+
def show
@user = User.find(params[:id])
@presenter = UserPresenter.new(@user)
diff --git a/app/views/users/_secondary_links.html.erb b/app/views/users/_secondary_links.html.erb
index 449204998..f3c66565f 100644
--- a/app/views/users/_secondary_links.html.erb
+++ b/app/views/users/_secondary_links.html.erb
@@ -1,6 +1,7 @@
<% content_for(:secondary_links) do %>