2024-08-13 20:44:44 +02:00
|
|
|
-- By default this file is used by `parseRoutesFile` in Foundation.hs
|
|
|
|
-- Syntax for this file here: https://www.yesodweb.com/book/routing-and-handlers
|
|
|
|
|
|
|
|
/static StaticR Static appStatic
|
2024-08-22 02:02:29 +02:00
|
|
|
-- /auth AuthR Auth getAuth
|
2024-08-13 20:44:44 +02:00
|
|
|
|
|
|
|
/favicon.ico FaviconR GET
|
|
|
|
/robots.txt RobotsR GET
|
|
|
|
|
2024-08-22 02:02:29 +02:00
|
|
|
/ HomeR GET
|
2024-08-13 20:44:44 +02:00
|
|
|
|
2024-10-08 14:17:49 +02:00
|
|
|
-- stationName
|
|
|
|
/station/#Text StationR GET
|
|
|
|
|
|
|
|
-- stationName/roundNumber
|
|
|
|
/station/#Text/#Int StationRoundR GET POST
|
|
|
|
|
2024-10-09 08:14:47 +02:00
|
|
|
/ad/ AdR GET
|
|
|
|
|
2024-10-08 14:17:49 +02:00
|
|
|
|
2024-08-22 02:02:29 +02:00
|
|
|
-- /comments CommentR POST
|
2024-08-13 20:44:44 +02:00
|
|
|
|
2024-08-22 02:02:29 +02:00
|
|
|
-- /profile ProfileR GET
|