forked from jasder/forgeplus
6 lines
130 B
Ruby
6 lines
130 B
Ruby
|
class IgnoresController < ApplicationController
|
||
|
def index
|
||
|
@ignores = Ignore.search(params[:name]).without_content
|
||
|
end
|
||
|
end
|