Sha256: 426bf650c1f4a8ac4e8b434895847550d3e2e1b6d0834316f890a4d3c2e5417f

Contents?: true

Size: 282 Bytes

Versions: 4

Compression:

Stored size: 282 Bytes

Contents

module Crowdblog
  class ApplicationController < ActionController::Base
    before_filter :authenticate_user!

    def authentication_filter
      authenticate_user!
    end

    def after_sign_out_path_for(resource_or_scope)
      crowdblog.new_user_session_path
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
crowdblog-0.1.3 app/controllers/crowdblog/application_controller.rb
crowdblog-0.1.2 app/controllers/crowdblog/application_controller.rb
crowdblog-0.1.1 app/controllers/crowdblog/application_controller.rb
crowdblog-0.1.0 app/controllers/crowdblog/application_controller.rb