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.

18 lines
422 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. def destroy
  6. @session.destroy!
  7. flash[:notice] = I18n.t('sessions.revoke_success')
  8. redirect_to edit_user_registration_path
  9. end
  10. private
  11. def set_session
  12. @session = current_user.session_activations.find(params[:id])
  13. end
  14. end