我在我的应用程序中使用对讲机导轨,并且我不想在某种情况下包含对讲机脚本。因此,当在用户会话中设置值时,我想跳过对讲机 after_filter。我试过了,但没有奏效:
class ApplicationController < ActionController::Base
before_filter :verify_session
def verify_session
if skip_intercom?
self.class.skip_after_filter :intercom_rails_auto_include
end
end
end
知道是否可能吗?