summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavisLWebb <davislwebb@ymail.com>2014-02-10 20:07:55 -0500
committerDavisLWebb <davislwebb@ymail.com>2014-02-10 20:07:55 -0500
commit8077013775a6a67990b2e9b0ab4896557c7a83c9 (patch)
tree24ab1685af723553a5b023e75c97595e72ba5b44
parent40758a58d4473f0581598a962f12f4e75af3c822 (diff)
parent281a7ffbfa79470e3a06740f6358c03ae912c979 (diff)
Merge https://github.com/LukeShu/leaguer
-rw-r--r--docs/DesignDocument.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/DesignDocument.md b/docs/DesignDocument.md
index 11803f8..0ecb62d 100644
--- a/docs/DesignDocument.md
+++ b/docs/DesignDocument.md
@@ -282,13 +282,15 @@ LoginController
model to validate the username and password.
- `logout()` Responds to POST requests by clearing the session
token, logging the user out, then redirects to the home page
- (`MainController#show_homepage()`). If the was not logged in,
+ (`MainController#show_homepage()`). If the user was not logged in,
it renders the `common/invalid` view.
SearchController
- : TODO
+ : This controller handles user search terms. It has one method:
- - `show_results()` TODO: RESPONDS TO POST
+ - `show_results()` Responds to POST by accessing whichever model(s)
+ contains the information requested and renders the `search/results`
+ view.
MessagesController
: TODO