summaryrefslogtreecommitdiff
path: root/docs/DesignDocument.md
diff options
context:
space:
mode:
authorDavisLWebb <davislwebb@ymail.com>2014-02-10 20:01:39 -0500
committerDavisLWebb <davislwebb@ymail.com>2014-02-10 20:01:39 -0500
commite4d9fb78315835bb67098693de9f23a74790e6d5 (patch)
treee3512637d14c1eb8c64eb4894979037071321328 /docs/DesignDocument.md
parent0b153e46fcd9a22b7d83eaac04a5102150e79c80 (diff)
parentccd7cc9971ccb9dc116c379694170fc14ac6060a (diff)
Merge https://github.com/LukeShu/leaguer
Diffstat (limited to 'docs/DesignDocument.md')
-rw-r--r--docs/DesignDocument.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/DesignDocument.md b/docs/DesignDocument.md
index c7e66a2..0be2493 100644
--- a/docs/DesignDocument.md
+++ b/docs/DesignDocument.md
@@ -121,7 +121,7 @@ ActiveRecord::Base (abstract)
: The abstract model that all other models inherit from.
Server
- :
+ : Server model providing access to system settings such as Language, Time_Zone, Server_name, Owner_name, and Version.
Tournement
: This model represents the structure of a tournement. It will have several data sections to it including: The match settings, the matches contained inside of the tournement, a unique id for the tournement, and the registered players that are participating in the tournement.
@@ -205,6 +205,9 @@ tournaments/edit.html
: A form for editing an existing tournament. The form is POSTed to
`TournamentsController#update()`.
+matches/index.html
+ : TODO: list of matches
+
matches/show.html
: Shows an individual match; q display of both teams. Each team's
players are clickable which causes a GET for the player's profile
@@ -324,6 +327,7 @@ TournamentsController
MatchesController
: TODO
+ - `index()`: TODO: GET
- `show()` TODO: GET
- `edit()` TODO: GET
- `update()` TODO: POST
@@ -342,9 +346,9 @@ UsersController
: TODO
- `index()` TODO: GET
+ - `show()` TODO: GET
- `new()` TODO: GET
- `create()` TODO: POST
- - `show()` TODO: GET
- `edit()` TODO: GET
- `update()` TODO: POST
- `delete()` TODO: POST