23 lines
467 B
Text
23 lines
467 B
Text
-- 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
|
|
-- /auth AuthR Auth getAuth
|
|
|
|
/favicon.ico FaviconR GET
|
|
/robots.txt RobotsR GET
|
|
|
|
/ HomeR GET
|
|
|
|
-- stationName
|
|
/station/#Text StationR GET
|
|
|
|
-- stationName/roundNumber
|
|
/station/#Text/#Int StationRoundR GET POST
|
|
|
|
/ad/ AdR GET
|
|
|
|
|
|
-- /comments CommentR POST
|
|
|
|
-- /profile ProfileR GET
|