educoder/app/controllers/shixun_lists_controller.rb

11 lines
280 B

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