From 2eb925478a7c0c43b824f587417f4838570e2246 Mon Sep 17 00:00:00 2001 From: "Angel D. Munoz" Date: Sat, 26 Oct 2024 22:21:00 -0600 Subject: [PATCH] fix: make sure it runs --- Program.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.fs b/Program.fs index dc69a6c..a49146d 100644 --- a/Program.fs +++ b/Program.fs @@ -34,7 +34,7 @@ app route "/" Controllers.Public.index route "/about" Controllers.Public.about route "/posts" Controllers.Posts.newPost - routef "/posts/%s" Controllers.Public.postDetail + routef "/posts/{%s}" Controllers.Public.postDetail ] CsrfPost [ route "/posts" Controllers.Posts.savePost ] ]