7754189187
Didn't bother with files in db/, config/, or features/
16 lines
448 B
Ruby
16 lines
448 B
Ruby
class SearchController < ApplicationController
|
|
def show
|
|
query = params[:search]
|
|
|
|
@projects = []
|
|
@merge_requests = []
|
|
@issues = []
|
|
|
|
if query.present?
|
|
@projects = current_user.projects.search(query).limit(10)
|
|
@merge_requests = MergeRequest.where(project_id: current_user.project_ids).search(query).limit(10)
|
|
@issues = Issue.where(project_id: current_user.project_ids).search(query).limit(10)
|
|
end
|
|
end
|
|
end
|