9 lines
497 B
Clojure
9 lines
497 B
Clojure
(ns auto-ap.ssr-routes)
|
|
|
|
(def routes {"admin" {"/history" {"" :admin-history
|
|
"/" :admin-history
|
|
#"/search/?" :admin-history-search
|
|
["/" [#"\d+" :entity-id] #"/?"] :admin-history-search
|
|
["/inspect/" [#"\d+" :entity-id] #"/?"] :admin-history-inspect}}})
|
|
|