mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-14 13:03:56 +03:00
884f64e292
For now, you can do three things in the web ui: add a transaction, view journal entries, view an account register. Filtering is not quite right yet.
9 lines
167 B
Haskell
9 lines
167 B
Haskell
-- | Site root and misc. handlers.
|
|
|
|
module Handler.RootR where
|
|
|
|
import Import
|
|
|
|
getRootR :: Handler Html
|
|
getRootR = redirect defaultroute where defaultroute = JournalR
|