groups
当尚未创建组时,我想将所有页面重定向到我的页面。我的before_action
application_controller 中有一个可以为我执行此操作的。但是,很明显,他陷入了一个循环,因为他也在组页面上检查它。我可以:except
用于群组页面吗?如果是这样,如何?
我试过了:
before_action :isGroupPresent, except: :groups
before_action :isGroupPresent, except: :group
before_action :isGroupPresent, except: [:group]