more cleanup.

This commit is contained in:
2023-10-28 20:27:00 -07:00
parent 855c23f4ae
commit e8a419fb3c
9 changed files with 142 additions and 121 deletions

View File

@@ -0,0 +1,16 @@
(ns auto-ap.routes.admin.transaction-rules)
(def routes {"" {:get ::page
:put ::save
:post ::save}
"/table" ::table
"/account/filled" ::dialog-filled
"/account/new" ::new-account
"/account/location-select" ::location-select
"/account/typeahead" ::account-typeahead
"/test" ::test
"/new" {:get ::new-dialog}
[[#"\d+" :db/id] "/edit"] ::edit-dialog
[[#"\d+" :db/id] "/run"] ::execute-dialog
"/check-badges" ::check-badges
})