routes 394 B

1234567891011121314151617
  1. -- By default this file is used by `parseRoutesFile` in Foundation.hs
  2. -- Syntax for this file here: https://www.yesodweb.com/book/routing-and-handlers
  3. /static StaticR Static appStatic
  4. /auth AuthR Auth getAuth
  5. /favicon.ico FaviconR GET
  6. /robots.txt RobotsR GET
  7. / HomeR GET
  8. /comments CommentR POST
  9. /profile ProfileR GET
  10. /posts/new PostNewR GET POST
  11. /posts/!#BlogPostId PostDetailsR GET