2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
class Profiles::ActiveSessionsController < Profiles::ApplicationController
|
|
|
|
def index
|
2019-03-13 22:55:13 +05:30
|
|
|
@sessions = ActiveSession.list(current_user).reject(&:is_impersonated)
|
2018-10-15 14:42:47 +05:30
|
|
|
end
|
2020-03-09 13:42:32 +05:30
|
|
|
|
|
|
|
def destroy
|
|
|
|
ActiveSession.destroy_with_public_id(current_user, params[:id])
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { redirect_to profile_active_sessions_url, status: :found }
|
|
|
|
format.js { head :ok }
|
|
|
|
end
|
|
|
|
end
|
2018-10-15 14:42:47 +05:30
|
|
|
end
|