mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
15 lines
321 B
Ruby
15 lines
321 B
Ruby
class SearchController < ApplicationController
|
|
before_action :authenticate_user!
|
|
|
|
def results
|
|
@query = params[:q]
|
|
|
|
@matched_attributes = Attribute
|
|
.where(user_id: current_user.id)
|
|
.where('value ILIKE ?', "%#{@query}%")
|
|
.order(:entity_type, :entity_id)
|
|
|
|
@seen_result_pages = {}
|
|
end
|
|
end
|