diff options
author | Roman Kovtunenko <roman.kovtunenko@gmail.com> | 2017-11-19 21:54:30 +0200 |
---|---|---|
committer | Roman Kovtunenko <roman.kovtunenko@gmail.com> | 2017-11-19 21:58:08 +0200 |
commit | 1997c9a13730cc82e3c4d42ab2995452cfa21074 (patch) | |
tree | 92919d0ce597a6582af3c315ad7dd55f6f5bf8fe /guides | |
parent | 125095c2d5845044dc214e136c3a758b4ed205e3 (diff) | |
download | rails-1997c9a13730cc82e3c4d42ab2995452cfa21074.tar.gz rails-1997c9a13730cc82e3c4d42ab2995452cfa21074.tar.bz2 rails-1997c9a13730cc82e3c4d42ab2995452cfa21074.zip |
Fix names of http authentication modules in api_app guides
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/api_app.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/guides/source/api_app.md b/guides/source/api_app.md index 43a7de88b0..b360f270d7 100644 --- a/guides/source/api_app.md +++ b/guides/source/api_app.md @@ -414,8 +414,10 @@ Some common modules you might want to add: - `AbstractController::Translation`: Support for the `l` and `t` localization and translation methods. -- `ActionController::HttpAuthentication::Basic` (or `Digest` or `Token`): Support - for basic, digest or token HTTP authentication. +- Support for basic, digest or token HTTP authentication: + * `ActionController::HttpAuthentication::Basic::ControllerMethods`, + * `ActionController::HttpAuthentication::Digest::ControllerMethods`, + * `ActionController::HttpAuthentication::Token::ControllerMethods` - `ActionView::Layouts`: Support for layouts when rendering. - `ActionController::MimeResponds`: Support for `respond_to`. - `ActionController::Cookies`: Support for `cookies`, which includes |