demarches-normaliennes/app/controllers/instructeurs/recherche_controller.rb

13 lines
422 B
Ruby
Raw Normal View History

module Instructeurs
class RechercheController < InstructeurController
2017-07-31 11:58:52 +02:00
def index
@search_terms = params[:q]
@dossiers = DossierSearchService.matching_dossiers_for_instructeur(@search_terms, current_instructeur)
@followed_dossiers_id = current_instructeur
.followed_dossiers
2020-06-11 14:34:30 +02:00
.where(groupe_instructeur_id: @dossiers.pluck(:groupe_instructeur_id))
.pluck(:id)
end
2017-07-31 11:58:52 +02:00
end
end