From 3e913a0f64954b2d7c7869917d674924682598f7 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 10 Feb 2014 20:50:45 -0500 Subject: DesignDocument: don't allow manual team creation --- docs/DesignDocument-classes.dot | 3 +-- docs/DesignDocument.md | 5 ----- 2 files changed, 1 insertion(+), 7 deletions(-) (limited to 'docs') 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="
MessagesController | new_alert() | post_alert() | show_private() | post_private()"]; TournamentsController[label="
TournamentsController | index() | show() | new() | create() | edit() | update() | end()"]; MatchesController[label="
MatchesController | index() | show() | edit() | update()"]; - TeamsController[label="
TeamsController | index() | show() | new() | create() | edit() | update()"] + TeamsController[label="
TeamsController | index() | show() | create() | edit() | update()"] UsersController[label="
UsersController | index() | show() | new() | create() | edit() | update() | 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 -- cgit v1.2.3