chinwagsocial/app/controllers/settings/sessions_controller.rb

21 lines
465 B
Ruby
Raw Normal View History

2017-07-19 12:59:04 +10:00
# frozen_string_literal: true
class Settings::SessionsController < Settings::BaseController
before_action :authenticate_user!
2017-07-19 12:59:04 +10:00
before_action :set_session, only: :destroy
skip_before_action :require_functional!
2017-07-19 12:59:04 +10:00
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