before_filter怎么传参数进去???

我写了一个页面权限拦截方法,但在控制器里面不知道怎么把参数传进去!!!
我在application.rb里面写了一个方法:
def check_purview(strPurChar)
 strPurChar = /\|#{strPurChar}\|/
 bolPur = session[:purviews] =~ strPurChar
 redirect_to("/home/face") unless bolPur
end
我在一个控制器里面要用before_filter,如:
before_filter :check_purview
但是check_purview有参数,但在这里应该怎么把这个参数传进去呢???