标签: ruby-on-rails ruby-on-rails-4 devise
我有scenario,使用prepend_before_action :authenticate_user!代替通常before_action :authenticate_user!会很有用。
prepend_before_action :authenticate_user!
before_action :authenticate_user!
我想知道对于Devise使用prepend_before_action是否可行/安全。我担心的是,Devise可能已将prepend_before_action用于必须在:authenticate_user!之前运行的其他过滤器。
prepend_before_action
:authenticate_user!