This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-07-19 04:59:04 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-12-12 22:32:13 +01:00
|
|
|
class Settings::SessionsController < Settings::BaseController
|
2019-02-04 04:25:59 +01:00
|
|
|
before_action :authenticate_user!
|
2017-07-19 04:59:04 +02:00
|
|
|
before_action :set_session, only: :destroy
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
@session.destroy!
|
|
|
|
flash[:notice] = I18n.t('sessions.revoke_success')
|
|
|
|
redirect_to edit_user_registration_path
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_session
|
|
|
|
@session = current_user.session_activations.find(params[:id])
|
|
|
|
end
|
|
|
|
end
|