Commit eb099e65
Changed files (1)
app
controllers
app/controllers/search_controller.rb
@@ -3,9 +3,4 @@ class SearchController < ApplicationController
@creations = Creation.search(params[:q], :include => :user, :match_mode => :extended, :star => true).page(params[:page]).per(6)
@search = params[:q]
end
-
- def tags
- @creations = Category.where(:slug => params[:id]).first.posts
- render 'home/index'
- end
end