2017-07-18 22:59:04 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-12-12 16:32:13 -05:00
|
|
|
class Settings::SessionsController < Settings::BaseController
|
2017-07-18 22:59:04 -04: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
|