mirror of
https://github.com/wahyd4/Libr.git
synced 2026-08-09 12:56:14 +10:00
8 lines
165 B
Ruby
8 lines
165 B
Ruby
class SearchController < ApplicationController
|
|
|
|
def do_search
|
|
@books = Book.where('name ilike ?',"%#{params[:keyword]}%").limit(24)
|
|
render :view
|
|
end
|
|
end
|