diff options
| author | stuebinm | 2022-08-28 21:33:33 +0200 | 
|---|---|---|
| committer | stuebinm | 2022-08-28 21:34:54 +0200 | 
| commit | f7066888652ed3326017adf2eb6786a21043ebf5 (patch) | |
| tree | 82b14b74bd352b553eb4036f48b15d3a2c4cae37 /lib/Server | |
| parent | 1b2e30c134c996e82c282b21099f21501dd966ac (diff) | |
some config thingyesod
works kinda well, but doesn't complain about unknown config values in
json, which is kinda hmpf tbh
Diffstat (limited to 'lib/Server')
| -rw-r--r-- | lib/Server/ControlRoom.hs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/Server/ControlRoom.hs b/lib/Server/ControlRoom.hs index 3c928f1..164d8ff 100644 --- a/lib/Server/ControlRoom.hs +++ b/lib/Server/ControlRoom.hs @@ -140,7 +140,7 @@ instance YesodPersist ControlRoom where      runSqlPool action pool  getRootR :: Handler Html -getRootR = redirect (TrainsR) +getRootR = redirect TrainsR  getTrainsR :: Handler Html  getTrainsR = do @@ -168,7 +168,7 @@ getTrainViewR trip day = do      Just res@Trip{..} -> do        anns <- runDB $ selectList [ AnnouncementTrip ==. trip, AnnouncementDay ==. day ] []        tokens <- runDB $ selectList [ RunningTrip ==. trip, RunningDay ==. day ] [] -      lastPing <- runDB $ selectFirst [ TrainPingToken <-. (fmap entityKey tokens) ] [Desc TrainPingTimestamp] +      lastPing <- runDB $ selectFirst [ TrainPingToken <-. fmap entityKey tokens ] [Desc TrainPingTimestamp]        defaultLayout $ do          mr <- getMessageRender          setTitle (toHtml (""+|mr MsgTrip|+" "+|tripTripID|+" "+|mr Msgon|+" "+|day|+"" :: Text)) | 
