diff options
author | Loïc Hoguin <[email protected]> | 2013-01-28 16:53:09 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-01-28 16:53:09 +0100 |
commit | a357c49d1bdbc524a9cdf1f11b9aed66cac47f59 (patch) | |
tree | a41482169e7507504deffe678a9201d2d6ef8038 /guide/middlewares.md | |
parent | 68da864aeb41746cb1a935f3b505a494e0abb259 (diff) | |
download | cowboy-a357c49d1bdbc524a9cdf1f11b9aed66cac47f59.tar.gz cowboy-a357c49d1bdbc524a9cdf1f11b9aed66cac47f59.tar.bz2 cowboy-a357c49d1bdbc524a9cdf1f11b9aed66cac47f59.zip |
New routing
Ultimately few things change, it's mostly just a nicer syntax and
slightly different expectations. The name of the value `dispatch`
did not change, because the previous dispatch values will now fail
if the code is not updated to using `cowboy_router:compile/1`.
No constraints have been implemented in this commit.
Diffstat (limited to 'guide/middlewares.md')
-rw-r--r-- | guide/middlewares.md | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/guide/middlewares.md b/guide/middlewares.md index 2f583cf..0ab6dc2 100644 --- a/guide/middlewares.md +++ b/guide/middlewares.md @@ -61,8 +61,6 @@ environment values to perform. Routing middleware ------------------ -@todo Routing middleware value is renamed very soon. - The routing middleware requires the `dispatch` value. If routing succeeds, it will put the handler name and options in the `handler` and `handler_opts` values of the environment, respectively. |