pastebinner/app/controllers/search_controller.rb

10 lines
162 B
Ruby
Raw Normal View History

2022-01-27 03:41:43 +00:00
class SearchController < ApplicationController
def search
if params[:term].nil?
@pastes = []
else
@pastes = Paste.search params[:term]
end
end
end