From c2d9786bd9caeadbb1abbd30bcb78c0e48afd030 Mon Sep 17 00:00:00 2001 From: AndrewMurrell Date: Mon, 10 Feb 2014 19:51:30 -0500 Subject: Added Server Model Description. --- docs/DesignDocument.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/DesignDocument.md') diff --git a/docs/DesignDocument.md b/docs/DesignDocument.md index 2c5e733..54c6913 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, and the registered players that are participating in the tournement. -- cgit v1.2.3 From 49dda73ced1dc2257a7566f9ac522e72e92c1edf Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 10 Feb 2014 19:58:30 -0500 Subject: work on DesignDocument-classes.dot --- docs/DesignDocument.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'docs/DesignDocument.md') diff --git a/docs/DesignDocument.md b/docs/DesignDocument.md index e9df70f..e07fb0c 100644 --- a/docs/DesignDocument.md +++ b/docs/DesignDocument.md @@ -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 -- cgit v1.2.3