debian-mirror-gitlab/app/controllers/profiles/active_sessions_controller.rb

17 lines
435 B
Ruby
Raw Normal View History

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-13 15:44:24 +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