before filter debug

This commit is contained in:
Jesse C. Fisher 2019-10-29 07:24:43 -07:00
parent f9050ee48a
commit b550531219

View File

@ -6,8 +6,8 @@ module AdminOnly
extend ActiveSupport::Concern
included do
before_filter :authenticate_user!
before_filter :admin_only
before_action :authenticate_user!
before_action :admin_only
end
private