summaryrefslogtreecommitdiff
path: root/app/controllers/profiles/active_sessions_controller.rb
blob: efe7ede5efab2f2da620755300cd1cd4f1b12cbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

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