Welcome to mirror list, hosted at ThFree Co, Russian Federation.

active_sessions_controller.rb « profiles « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f1e77d68acd039f6fbf300dee77c442c56c8ab26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Profiles::ActiveSessionsController < Profiles::ApplicationController
  def index
    @sessions = ActiveSession.list(current_user)
  end

  def destroy
    ActiveSession.destroy(current_user, params[:id])

    respond_to do |format|
      format.html { redirect_to profile_active_sessions_url, status: :found }
      format.js { head :ok }
    end
  end
end