The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

21 lines
465 B

  1. # frozen_string_literal: true
  2. class Settings::SessionsController < Settings::BaseController
  3. before_action :authenticate_user!
  4. before_action :set_session, only: :destroy
  5. skip_before_action :require_functional!
  6. def destroy
  7. @session.destroy!
  8. flash[:notice] = I18n.t('sessions.revoke_success')
  9. redirect_to edit_user_registration_path
  10. end
  11. private
  12. def set_session
  13. @session = current_user.session_activations.find(params[:id])
  14. end
  15. end