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