Fixes logout link.

This commit is contained in:
2023-01-17 16:02:45 -08:00
parent 89fa510375
commit d6abad581b
5 changed files with 51 additions and 5 deletions

View File

@@ -1,7 +1,8 @@
(ns auto-ap.client-routes)
(def routes ["/" {"" :index
#"login/?" :login
"login" :login
"login/" :login
"needs-activation/" :needs-activation
"needs-activation" :needs-activation
"payments/" :payments

View File

@@ -6,6 +6,7 @@
["/" [#"\d+" :entity-id] #"/?"] :admin-history-search
["/inspect/" [#"\d+" :entity-id] #"/?"] :admin-history-inspect}}
"company" {"/1099" :company-1099
"/1099/table" {:get :company-1099-vendor-table}
"/1099/vendor-dialog" {["/" [#"\d+" :vendor-id]] {:get :company-1099-vendor-dialog
:post :company-1099-vendor-save}}}})