Add JSON format support to session destroy for native API clients

This is so that native API clients can get the session record deleted
server-side. They still need to take care of clearing any cookies
they've set in web views.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Rosa Gutierrez
2026-01-27 19:21:22 +01:00
committed by Rosa Gutierrez
parent ec1b8f2fed
commit c059e0b216
4 changed files with 52 additions and 1 deletions
+5 -1
View File
@@ -20,7 +20,11 @@ class SessionsController < ApplicationController
def destroy
terminate_session
redirect_to_logout_url
respond_to do |format|
format.html { redirect_to_logout_url }
format.json { head :no_content }
end
end
private