forgeplus/app/controllers/ignores_controller.rb

6 lines
130 B
Ruby
Raw Permalink Normal View History

2020-03-09 00:40:16 +08:00
class IgnoresController < ApplicationController
def index
@ignores = Ignore.search(params[:name]).without_content
end
end