1
0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-06-02 08:11:41 +02:00

Minor improvements on error handling on frontend.

This commit is contained in:
Andrey Antukh 2021-01-22 15:23:21 +01:00 committed by Alonso Torres
parent 594bceff77
commit 4ee1f9cf2c
5 changed files with 20 additions and 18 deletions
backend/src/app/http

View file

@ -26,6 +26,6 @@
(defn logout-handler
[{:keys [session] :as cfg} request]
(session/delete! cfg request)
{:status 200
{:status 204
:cookies (session/cookies session {:value "" :max-age -1})
:body ""})