diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/DesignDocument.md | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/DesignDocument.md b/docs/DesignDocument.md index b70fa1a..c54e8d5 100644 --- a/docs/DesignDocument.md +++ b/docs/DesignDocument.md @@ -283,13 +283,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 |