Guest User

Untitled

a guest
Dec 11th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. # admin/users.rb
  2. index do
  3. column("") { |user| link_to "Switch", switch_to_admin_user_path(user), method: :post, target: "_blank"}
  4. end
  5.  
  6. member_action :switch_to, method: :post do
  7. user = User.find(params[:id])
  8.  
  9. sign_out :user if user_signed_in?
  10.  
  11. sign_in :user, user
  12.  
  13. redirect_to root_path
  14. end
Add Comment
Please, Sign In to add comment