From e20df3577556e1782b08621ff41becc13cc98096 Mon Sep 17 00:00:00 2001 From: Bryce Covert Date: Fri, 17 Mar 2023 11:41:06 -0700 Subject: [PATCH] Fixes auth issue by eliminating client names --- src/clj/auto_ap/routes/auth.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clj/auto_ap/routes/auth.clj b/src/clj/auto_ap/routes/auth.clj index 663a0654..4eef4eab 100644 --- a/src/clj/auto_ap/routes/auth.clj +++ b/src/clj/auto_ap/routes/auth.clj @@ -41,7 +41,7 @@ auth {:user (:name profile) :exp (time/plus (time/now) (time/days 30)) :user/clients (map (fn [c] - (select-keys c [:client/code :db/id :client/name :client/locations])) + (select-keys c [:client/code :db/id :client/locations])) (:user/clients user)) :user/role (name (:user/role user)) :user/name (:name profile)}