This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-07-18 19:59:04 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-12-12 13:32:13 -08:00
|
|
|
class Settings::SessionsController < Settings::BaseController
|
2019-02-03 19:25:59 -08:00
|
|
|
before_action :authenticate_user!
|
2017-07-18 19:59:04 -07: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
|