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

17 lines
394 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
@sessions = ActiveSession.list(current_user)
end
def destroy
ActiveSession.destroy(current_user, params[:id])
respond_to do |format|
2018-11-18 11:00:15 +05:30
format.html { redirect_to profile_active_sessions_url, status: :found }
2018-10-15 14:42:47 +05:30
format.js { head :ok }
end
end
end