Topic: Adding Before_filters with Salted Hash Login
I am using the Salted Hash Login with much success. I want to add another filter for some of my methods in a controller. Does anybody know how I could add create another filter while using the salted hash login gem?
class ApplicationController < ActionController::Base
before_filter :login_required, :except => :calendar
include Localization
include UserSystem