Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [ci skip]Add space before closing curly brace | willnet | 2017-10-25 | 1 | -2/+2 |
| | |||||
* | Use `form_with` instead of `form_for` in engine guide [ci skip] | Yoshiyuki Hirano | 2017-10-09 | 1 | -3/+3 |
| | |||||
* | Cosmetic fixes [ci skip] | Yauheni Dakuka | 2017-10-06 | 1 | -1/+1 |
| | |||||
* | Use credentials, not secrets, for Active Storage (#30650) | Claudio B | 2017-09-19 | 1 | -1/+1 |
| | | | | | | | | | | According to #30067: > This PR will deprecate secrets.yml* and instead adopt > config/credentials.yml.enc to signify what these secrets are specifically > for: Keeping API keys, database passwords, and any other integration > credentials in one place. [ci skip] since only comments are being edited. | ||||
* | Update action_controller_overview.md [ci skip] | Yauheni Dakuka | 2017-09-19 | 1 | -2/+2 |
| | |||||
* | [ci skip] Prefer credentials to secrets in docs. | Kasper Timm Hansen | 2017-09-13 | 1 | -23/+7 |
| | | | | | | | Removes most mentions of secrets.secret_key_base and explains credentials instead. Also removes some very stale upgrade notices about Rails 3/4. | ||||
* | Use https instead of http in guide [ci skip] | Yoshiyuki Hirano | 2017-08-23 | 1 | -1/+1 |
| | |||||
* | Fix english for the rescue_from warning [ci skip] | Yuki Nishijima | 2017-07-11 | 1 | -1/+1 |
| | |||||
* | Improving docs for callbacks execution order [ci skip] | dixpac | 2017-05-21 | 1 | -0/+3 |
| | | | | | When define callbacks latest definition on the same callback/method overwrites previous ones. | ||||
* | Small grammar fix | Jon Moss | 2017-03-29 | 1 | -1/+1 |
| | | | | | | Add comma and change verb. [ci skip] | ||||
* | add hint on after_action filters | Frederik Wille | 2017-03-29 | 1 | -1/+1 |
| | | | | | | | | Adds a hint that ``after_action``-callbacks are not executed when an exception was raised in the rest of the request cycle. The ``before_action`` section mentions "If there are additional filters scheduled to run after that filter, they are also cancelled." but this is IMO not sufficient. | ||||
* | Add link to API documentation | Kirill Zhuravlov | 2016-11-23 | 1 | -1/+1 |
| | | | Add a link to http://api.rubyonrails.org/classes/ActionController.html in the beginning of an article. | ||||
* | adds support for arbitrary hashes in strong parameters | Xavier Noria | 2016-11-11 | 1 | -3/+15 |
| | |||||
* | Setup default session store internally, no longer through an application ↵ | Prathamesh Sonpatki | 2016-07-17 | 1 | -2/+2 |
| | | | | | | | | | | | | | initializer - By default the session store will be set to cookie store with application name as session key. - Older apps are not affected as they will have the session store initializer generated by Rails in older versions, and Rails will not overwrite the session store if it is already set or disabled. - But new apps will not have the initializer, instead the session store will be set to cookie store by default. - Based on comment by DHH here - https://github.com/rails/rails/issues/25181#issuecomment-222312764. | ||||
* | Add Rack doc link for request and response object [ci skip] | Jun Wan Goh | 2016-06-14 | 1 | -2/+2 |
| | |||||
* | Merge branch 'master' of github.com:rails/docrails | Vijay Dev | 2016-06-03 | 1 | -5/+6 |
|\ | | | | | | | | | Conflicts: guides/source/action_cable_overview.md | ||||
| * | Small grammar fixes for Action Controller Overview | Jon Moss | 2016-05-21 | 1 | -5/+6 |
| | | | | | | | | [ci skip] | ||||
* | | fix incorrect class name [ci skip] | yuuji.yaginuma | 2016-05-28 | 1 | -1/+1 |
|/ | |||||
* | [ci skip] Parameter filter performs regular expression partial matching | Andrew Babichev | 2016-03-31 | 1 | -0/+2 |
| | |||||
* | Update action_controller_overview.md | Sandeep Navghane | 2016-03-15 | 1 | -1/+1 |
| | |||||
* | [ci skip] update guide for Puma web server instead of Webrick | Gaurav Sharma | 2016-01-20 | 1 | -4/+0 |
| | | | Rails 5.0 default server puma web server. following commit - https://github.com/rails/rails/commit/ae48ea69 | ||||
* | Add a note on ActionController guide about 404 | Mauro George | 2016-01-11 | 1 | -2/+6 |
| | | | | [ci skip] | ||||
* | Refer to rails command instead of rake in a bunch of places | David Heinemeier Hansson | 2015-12-18 | 1 | -1/+1 |
| | | | | Still more to do. Please assist! | ||||
* | Add `redirect_back` for safer referrer redirects | Derek Prior | 2015-12-16 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | `redirect_to :back` is a somewhat common pattern in Rails apps, but it is not completely safe. There are a number of circumstances where HTTP referrer information is not available on the request. This happens often with bot traffic and occasionally to user traffic depending on browser security settings. When there is no referrer available on the request, `redirect_to :back` will raise `ActionController::RedirectBackError`, usually resulting in an application error. `redirect_back` takes a required `fallback_location` keyword argument that specifies the redirect when the referrer information is not available. This prevents 500 errors caused by `ActionController::RedirectBackError`. | ||||
* | Change AbstractRequest to ActionDispatch::Request | Bradley D | 2015-09-17 | 1 | -1/+1 |
| | | | | | | AbstractRequest has been deprecated, updating to refer to ActionDispatch::Request instead. [ci skip] | ||||
* | Remove RHTML reference in Action Controller docs [ci skip] | Lachlan Campbell | 2015-09-10 | 1 | -1/+1 |
| | |||||
* | typo "description not clear corrected with proper description and ↵ | kishore-mohan | 2015-09-02 | 1 | -1/+1 |
| | | | | action_controller_overview file Rails' -> Rails" [ci skip] | ||||
* | fix typo in method name [ci skip] | yuuji.yaginuma | 2015-08-30 | 1 | -1/+1 |
| | |||||
* | Remove a link to the site that seems to be gone. [ci skip] | shunsukeaida | 2015-08-23 | 1 | -1/+1 |
| | | | | Followup to #20637. | ||||
* | [ci skip] Fix action_controller_overview | yui-knk | 2015-06-28 | 1 | -1/+1 |
| | |||||
* | document that default_url_options is cached per request [ci skip] | Xavier Noria | 2015-06-15 | 1 | -1/+3 |
| | |||||
* | Tiny grammar correction in documentation [ci skip] | Ankit gupta | 2015-05-05 | 1 | -1/+1 |
| | |||||
* | Merge branch 'master' of github.com:rails/docrails | Vijay Dev | 2015-04-14 | 1 | -1/+1 |
|\ | |||||
| * | [ci skip] Wrap with double quotation | yui-knk | 2015-04-10 | 1 | -1/+1 |
| | | |||||
* | | [ci skip] Downcases filter names | yui-knk | 2015-04-10 | 1 | -3/+3 |
|/ | |||||
* | Merge pull request #18459 from cantino/action_controller_guide_edits | Rafael Mendonça França | 2015-03-11 | 1 | -45/+44 |
|\ | | | | | Action Controller guide edits for grammar and clarity | ||||
| * | Edits for grammar and clarity, with help from georgeclaghorn and robin850. | Andrew Cantino | 2015-03-11 | 1 | -45/+44 |
| | | |||||
* | | [ci skip] escape under score | yui-knk | 2015-02-13 | 1 | -1/+1 |
| | | |||||
* | | - Changed `IN` to `ON` in markdown renderer condition | Vipul A M | 2015-01-14 | 1 | -1/+1 |
|/ | | | | - Changed `IN` to `ON` in all note sentences in guides. | ||||
* | Add a note about non-buffering servers for AC::Live | Aditya Kapoor | 2014-12-27 | 1 | -0/+5 |
| | | | | [ci skip] | ||||
* | warn about reading guides in GitHub | Xavier Noria | 2014-12-23 | 1 | -0/+2 |
| | | | | References #18148. | ||||
* | Don't convert empty arrays to nils when deep munging params | Chris Sinjakli | 2014-12-15 | 1 | -2/+2 |
| | |||||
* | Remove custom errors page section from the guides | Yuki Nishijima | 2014-11-28 | 1 | -58/+1 |
| | | | | | | | | | | | | | | This pattern is too problematic and introduces a lot of edge cases: * On 4.2, the issue https://github.com/rails/rails/issues/15124 is back again. * needs to define each action for each http status otherwise the router raises ActionController::RoutingError (No route matches). * If the router has `match "/*username",...` and some action is missing, Rails will pick up the "match" and try to do its job. * encourages people to copy & paste programming. Not DRY. [ci skip] | ||||
* | [ci skip] No need to indent here (AC overview). | Juanito Fatas | 2014-10-25 | 1 | -6/+6 |
| | |||||
* | Improve the warning a bit [ci skip] | Rafael Mendonça França | 2014-10-16 | 1 | -1/+1 |
| | |||||
* | Merge pull request #15827 from ↵ | Rafael Mendonça França | 2014-10-16 | 1 | -1/+3 |
|\ | | | | | | | | | | | yuki24/another-improvements-for-dynamic-error-pages A warning line should look like a warning section in Guides | ||||
| * | A warning line should look like a warning section | Yuki Nishijima | 2014-06-19 | 1 | -1/+3 |
| | | | | | | | | [ci skip] | ||||
* | | [guides] Use `match ..., via: :all` in the custom exceptions app [ci skip] | Yuki Nishijima | 2014-09-06 | 1 | -3/+3 |
| | | | | | | | | | | Using `get` results in an unexpected error page(returning empty body) for requests of other HTTP mehtods other than GET. Use `match ..., via: :all` so the exceptions app can be more stable. | ||||
* | | Add warning for `rescue_from Exception` and `rescue_from StandardError` | Yuki Nishijima | 2014-06-19 | 1 | -0/+2 |
|/ | | | | [ci skip] | ||||
* | ErrorsController shouldn't inherit ApplicationController, but ↵ | Yuki Nishijima | 2014-06-19 | 1 | -1/+1 |
| | | | | | | | | | ActionController::Base Inheriting `ApplicationController` often causes an issue as it always has before/after actions. It should encourage to use `ActionController::Base` instead. [ci skip] |