Module: Clearance::App::Controllers::ConfirmationsController
- Defined in:
- lib/clearance/app/controllers/confirmations_controller.rb
Defined Under Namespace
Modules: InstanceMethods, PrivateInstanceMethods
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
6 7 8 9 10 11 12 13 14 15 |
# File 'lib/clearance/app/controllers/confirmations_controller.rb', line 6 def self.included(base) base.class_eval do before_filter :existing_user?, :only => [:new, :create] include InstanceMethods private include PrivateInstanceMethods end end |