educoder/app/controllers/shixun_lists_controller.rb

10 lines
259 B

6 years ago
class ShixunListsController < ApplicationController
def index
5 years ago
@results = ShixunSearchService.call(search_params, current_laboratory)
6 years ago
end
private
def search_params
params.permit(:keyword, :type, :page, :limit, :order, :status, :diff)
6 years ago
end
end