summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-02-10 20:50:45 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-02-10 20:50:45 -0500
commit3e913a0f64954b2d7c7869917d674924682598f7 (patch)
tree604efca7d121bfcaca77c87744b0f4b8292b0070 /docs
parent4e810a9f0c19afcda7bcdb00ddfedc4724617b62 (diff)
DesignDocument: don't allow manual team creation
Diffstat (limited to 'docs')
-rw-r--r--docs/DesignDocument-classes.dot3
-rw-r--r--docs/DesignDocument.md5
2 files changed, 1 insertions, 7 deletions
diff --git a/docs/DesignDocument-classes.dot b/docs/DesignDocument-classes.dot
index d9ef01e..c91f7b1 100644
--- a/docs/DesignDocument-classes.dot
+++ b/docs/DesignDocument-classes.dot
@@ -80,7 +80,7 @@ digraph systemModel {
MessagesController[label="<main> MessagesController | <new_alert> new_alert() | <post_alert> post_alert() | <show_private> show_private() | <post_private> post_private()"];
TournamentsController[label="<main> TournamentsController | <index> index() | <show> show() | <new> new() | <create> create() | <edit> edit() | <update> update() | <end> end()"];
MatchesController[label="<main> MatchesController | <index> index() | <show> show() | <edit> edit() | <update> update()"];
- TeamsController[label="<main> TeamsController | <index> index() | <show> show() | <new> new() | <create> create() | <edit> edit() | <update> update()"]
+ TeamsController[label="<main> TeamsController | <index> index() | <show> show() | <create> create() | <edit> edit() | <update> update()"]
UsersController[label="<main> UsersController | <index> index() | <show> show() | <new> new() | <create> create() | <edit> edit() | <update> update() | <delete> delete()"]
}
@@ -215,7 +215,6 @@ digraph systemModel {
TeamsController:index -> teams_index;
TeamsController:show -> teams_show;
- TeamsController:new -> teams_new -> TeamsController:create -> teams_edit;
TeamsController:edit -> teams_edit -> TeamsController:update -> teams_edit;
UsersController:index -> users_index;
diff --git a/docs/DesignDocument.md b/docs/DesignDocument.md
index 00e2a43..58c78c5 100644
--- a/docs/DesignDocument.md
+++ b/docs/DesignDocument.md
@@ -233,9 +233,6 @@ teams/index.html
teams/show.html
: TODO: show individual team
-teams/new.html
- : MAYBE TODO: form to create a new team
-
teams/edit.html
: TODO: form to edit a team
@@ -347,8 +344,6 @@ TeamsController
- `index()` TODO: GET
- `show()` TODO: GET
- - `new()` MAYBE TODO: GET
- - `create()` MAYBE TODO: POST
- `edit()` TODO: GET
- `update()` TODO: POST