Few updates to cover selector width calculation

This commit is contained in:
dredgy
2022-07-07 14:48:32 +10:00
parent b9a0b578e3
commit ac30d8147e
3 changed files with 25 additions and 14 deletions

View File

@@ -4,7 +4,10 @@ open DredgePos
open Saturn
open Giraffe
let installer = (warbler (fun _ -> htmlString (Controller.RunAllMigrations ())))
let router = router {
pipe_through Ajax.Router.pipeline
get "/" (warbler (fun _ -> htmlString (Controller.RunAllMigrations ())))
get "/" installer
get "" installer
}