Class: SwitchUser::Provider::Clearance
- Inherits:
-
Base
- Object
- Base
- SwitchUser::Provider::Clearance
show all
- Defined in:
- lib/switch_user/provider/clearance.rb
Instance Method Summary
collapse
Methods inherited from Base
#clear_original_user, #current_user?, #current_users_without_scope, #login_exclusive, #login_inclusive, #logout_all, #original_user, #original_user=, #remember_current_user
Constructor Details
#initialize(controller) ⇒ Clearance
Returns a new instance of Clearance.
6
7
8
|
# File 'lib/switch_user/provider/clearance.rb', line 6
def initialize(controller)
@controller = controller
end
|
Instance Method Details
#current_user(_scope = nil) ⇒ Object
18
19
20
|
# File 'lib/switch_user/provider/clearance.rb', line 18
def current_user(_scope = nil)
@controller.send(:current_user)
end
|
#login(user, _scope = nil) ⇒ Object
10
11
12
|
# File 'lib/switch_user/provider/clearance.rb', line 10
def login(user, _scope = nil)
@controller.send(:sign_in, user)
end
|
#logout(_scope = nil) ⇒ Object
14
15
16
|
# File 'lib/switch_user/provider/clearance.rb', line 14
def logout(_scope = nil)
@controller.send(:sign_out)
end
|