![Gitter](https://badges.gitter.im/Join Chat.svg)
It's a utility library for enabling functionallity like login as button for admin.
If you have multi users application and sometimes you want to test functionally using login of existing user without requesting the password, define login as button with url helper and use it.
Add this line to your application's Gemfile:
gem 'devise_masquerade'
And then execute:
$ bundle
In the view you can use url helper for defining link:
= link_to "Login As", masquerade_path(user)
In the model you'll need to add the parameter :masqueradable to the existing comma separated values in the devise method:
devise :invitable, :confirmable, :database_authenticatable, :registerable, :masqueradable
Add into your application_controller.rb:
before_action :masquerade_user!
Instead of user you can use your resource name admin, student or another names.
If you want to back to the owner of masquerade action user you could use helpers:
user_masquerade? # current user was masqueraded by owner?
= link_to "Reverse masquerade", back_masquerade_path(current_user)
class Admin::MasqueradesController < Devise::MasqueradesController
def show
authorize!(:masquerade, User)
super
end
end
class Admin::MasqueradesController < Devise::MasqueradesController
def show
authorize!(:masquerade, User)
super
end
protected
def after_masquerade_path_for(resource)
"/custom_url"
end
end
in routes.rb
:
devise_for :users, controllers: { masquerades: "admin/masquerades" }
Devise.masquerade_param = 'masquerade'
Devise.masquerade_expires_in = 10.seconds
Devise.masquerade_key_size = 16 # size of the generate by SecureRandom.urlsafe_base64
Devise.masquerade_bypass_warden_callback = false
Devise.masquerade_routes_back = false # if true, route back to the page the user was on via redirect_back
cd spec/dummy
rake db:setup
rails server
And check http://localhost:3000/, use for login user1@example.com and 'password'
cd spec/dummy
RAILS_ENV=test rake db:setup
cd -
rspec
cucumber
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request