9 lines
162 B
Ruby
9 lines
162 B
Ruby
class SearchController < ApplicationController
|
|
def search
|
|
if params[:term].nil?
|
|
@pastes = []
|
|
else
|
|
@pastes = Paste.search params[:term]
|
|
end
|
|
end
|
|
end
|