Skip to content

Instantly share code, notes, and snippets.

@chadwpry
Created October 1, 2008 22:11
Show Gist options
  • Save chadwpry/14205 to your computer and use it in GitHub Desktop.
Save chadwpry/14205 to your computer and use it in GitHub Desktop.
class Admin::UsersController < Admin::BaseController
...
def search
@users = User.search params[:s]
respond_to do |format|
format.html # show.html.erb
format.xml { render :xml => @users }
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment