I added an admin role to Devise by adding a admin attribute.
Could you tell me if this is the right way to create a before_filter that requires an admin user to be signe
Looking at the answer above (by Michael De Silva), I had an issue with the code he used. He wrote the path as a symbol (:new_user_session_path
), but I needed it to be a regular path helper (new_user_session_path
). Until I changed this, I was getting errors, saying the path was invalid. (I am running Rails 5.)
Hope this is helpful to others!