Skip to content
Snippets Groups Projects

Add routes to allow git actions on snippet repositories

All threads resolved!
Compare and Show latest version
119 files
+ 1964
375
Compare changes
  • Side-by-side
  • Inline
Files
119
@@ -4,4 +4,13 @@ class Profiles::ActiveSessionsController < Profiles::ApplicationController
@@ -4,4 +4,13 @@ class Profiles::ActiveSessionsController < Profiles::ApplicationController
def index
def index
@sessions = ActiveSession.list(current_user).reject(&:is_impersonated)
@sessions = ActiveSession.list(current_user).reject(&:is_impersonated)
end
end
 
 
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
end
end
Loading