version 1 done
This commit is contained in:
commit
59e14ce390
47 changed files with 9188 additions and 0 deletions
25
config/routes.yesodroutes
Normal file
25
config/routes.yesodroutes
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
-- 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
|
||||
|
||||
/favicon.ico FaviconR GET
|
||||
/robots.txt RobotsR GET
|
||||
|
||||
/ HomeR GET
|
||||
/group/#GroupId TodolistR GET
|
||||
|
||||
/add AddGroupR POST
|
||||
/add/group/#GroupId AddTodolistR POST
|
||||
/group/#GroupId/todolist/#TodolistId TodolistItemsR GET
|
||||
/add/group/#GroupId/todolist/#TodolistId AddTodolistItemR POST
|
||||
|
||||
/check/group/#GroupId/todolist/#TodolistId/#TodolistItemId CheckTodolistItemR POST
|
||||
/edit/group/#GroupId/todolist/#TodolistId EditTodolistItemsR GET POST
|
||||
|
||||
/edit/group/#GroupId EditTodolistR GET POST
|
||||
/edit EditGroupR GET POST
|
||||
|
||||
/delete DeleteGroupR POST
|
||||
/delete/group/#GroupId DeleteTodolistR POST
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue