Files
gitlink-forgeplus/app/controllers/ignores_controller.rb
2020-03-09 00:40:16 +08:00

6 lines
130 B
Ruby

class IgnoresController < ApplicationController
def index
@ignores = Ignore.search(params[:name]).without_content
end
end