2018-09-23 15:44:14 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-02 04:08:16 -04:00
|
|
|
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|
|
2018-07-02 06:43:06 -04:00
|
|
|
format.html { redirect_to profile_active_sessions_url, status: :found }
|
2018-05-02 04:08:16 -04:00
|
|
|
format.js { head :ok }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|