From 4432ffcc428d62c03de2e8f533c1e46a4d8d8fc8 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Thu, 12 Jun 2014 13:50:26 +0200 Subject: [PATCH] Update controllers.rst --- developer_manual/app/controllers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer_manual/app/controllers.rst b/developer_manual/app/controllers.rst index d266c3c2e..5098f7bf2 100644 --- a/developer_manual/app/controllers.rst +++ b/developer_manual/app/controllers.rst @@ -4,7 +4,7 @@ Controllers .. sectionauthor:: Bernhard Posselt -Controllers are used to connect :doc:`routes ` with app logic. Think of it as callbacks that are executed once a request has come in. Controllers are defined inside the **controllers/** directory. +Controllers are used to connect :doc:`routes ` with app logic. Think of it as callbacks that are executed once a request has come in. Controllers are defined inside the **controller/** directory. To create a controller, simply extend the Controller class and create a method that should be executed on a request: