summaryrefslogtreecommitdiff
path: root/docs/DesignDocument-classes.dot
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/DesignDocument-classes.dot
parent4e810a9f0c19afcda7bcdb00ddfedc4724617b62 (diff)
DesignDocument: don't allow manual team creation
Diffstat (limited to 'docs/DesignDocument-classes.dot')
-rw-r--r--docs/DesignDocument-classes.dot3
1 files changed, 1 insertions, 2 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;